Check for pytest with Cmake.

This commit is contained in:
John McNamara 2022-02-14 18:49:30 +00:00
parent d9f42c45ae
commit b4fdf908df

View File

@ -359,12 +359,12 @@ if(BUILD_TESTS)
# functional tests
find_package(Python COMPONENTS Interpreter REQUIRED)
# find_package(pytest)
find_program(Pytest_EXECUTABLE NAMES pytest)
# if(NOT (pytest_FOUND))
# message("Please install the Python pytest library to run functional tests:")
# message(" pip install pytest\n")
# endif()
if (NOT Pytest_EXECUTABLE)
message("Please install the Python pytest library to run functional tests:")
message(" pip install pytest\n")
endif()
set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/test/functional/src )