Add check for pytest to Cmake.

This commit is contained in:
John McNamara 2022-02-14 08:59:10 +00:00
parent 1556ddfec7
commit 491531736b

View File

@ -358,8 +358,13 @@ if(BUILD_TESTS)
CreateTest(LXW_UNIT_SOURCES unit)
# functional tests
find_program(PYTHON python)
find_program(PYTEST pytest)
find_package(Python COMPONENTS Interpreter REQUIRED)
find_package(pytest)
if(NOT (pytest_FOUND))
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 )