[cmake] Increase timeout of pytests

This commit is contained in:
Matthias Hochsteger 2019-09-10 11:09:08 +02:00
parent dfc5f30dcb
commit 728196472e

View File

@ -1,4 +1,5 @@
if(USE_PYTHON)
add_test(NAME pytest COMMAND ${PYTHON_EXECUTABLE} -m pytest WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
add_custom_target(pytest ${PYTHON_EXECUTABLE} -m pytest WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
set_tests_properties ( pytest PROPERTIES TIMEOUT 1200 )
endif(USE_PYTHON)