Skip to content

Commit

Permalink
Merge pull request #823 from ros/nosetest_message
Browse files Browse the repository at this point in the history
change warning to status when nosetests was not found
  • Loading branch information
dirk-thomas authored Aug 26, 2016
2 parents d4f73ac + 01b25f9 commit 15792d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/test/nosetests.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ if(NOSETESTS)
message(STATUS "Using Python nosetests: ${NOSETESTS}")
else()
if("${PYTHON_VERSION_MAJOR}" STREQUAL "3")
message(WARNING "nosetests not found, Python tests can not be run (try installing package 'python3-nose')")
message(STATUS "nosetests not found, Python tests can not be run (try installing package 'python3-nose')")
else()
message(WARNING "nosetests not found, Python tests can not be run (try installing package 'python-nose')")
message(STATUS "nosetests not found, Python tests can not be run (try installing package 'python-nose')")
endif()
endif()

Expand Down

0 comments on commit 15792d9

Please sign in to comment.