Increase ci test timeout to 90 seconds

There's a handful of tests which float somewhere around the 55+/- 10
second execution time, so the previous 60 second timeout caused
these to randomly fail.

Inceasing the timeout seems a nicer approach vs splitting out
these tests
This commit is contained in:
Nyall Dawson 2022-10-17 10:22:43 +10:00
parent 6eb05d3041
commit f395a5ec71

View File

@ -8,7 +8,7 @@ SET (CTEST_BUILD_COMMAND $ENV{CTEST_BUILD_COMMAND})
SET (CTEST_SITE "github.com")
SET (CTEST_BUILD_NAME "$ENV{CTEST_BUILD_NAME}")
SET (CTEST_BUILD_CONFIGURATION "Release")
SET (CTEST_TEST_TIMEOUT 60) # 60 seconds
SET (CTEST_TEST_TIMEOUT 90) # 90 seconds
IF(DEFINED ENV{CTEST_PARALLEL_LEVEL})
SET(PARALLEL_LEVEL $ENV{CTEST_PARALLEL_LEVEL})
ELSE(DEFINED ENV{CTEST_PARALLEL_LEVEL})