From 728196472e2109d43c036e31db458463afa4197e Mon Sep 17 00:00:00 2001 From: Matthias Hochsteger Date: Tue, 10 Sep 2019 11:09:08 +0200 Subject: [PATCH] [cmake] Increase timeout of pytests --- tests/pytest/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/pytest/CMakeLists.txt b/tests/pytest/CMakeLists.txt index 9997622a..cdf35639 100644 --- a/tests/pytest/CMakeLists.txt +++ b/tests/pytest/CMakeLists.txt @@ -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)