mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Add check for pytest to Cmake.
This commit is contained in:
parent
1556ddfec7
commit
491531736b
@ -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 )
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user