From d8a021e1579b3bbeb639fcab9b69eda33c3c0910 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Va=C5=A1ko?= Date: Mon, 9 Dec 2024 13:11:42 +0100 Subject: [PATCH] fix: Increase timeout from 20->30 minutes for tests There are too many tests running without cache, increase timeout --- scripts/tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tests.sh b/scripts/tests.sh index e7abca2c58..b91f71fd79 100755 --- a/scripts/tests.sh +++ b/scripts/tests.sh @@ -36,7 +36,7 @@ fi # Run tests, sequentially because the API is shared resource echo "Running tests ..." export KBC_VERSION_CHECK=false # do not check the latest version in the tests -cmd="gotestsum --no-color=false --format \"$TEST_LOG_FORMAT\" -- -timeout 1200s -p $TEST_PARALLELISM_PKG -parallel $TEST_PARALLELISM $TEST_ARGS "$TEST_PACKAGE" $@" +cmd="gotestsum --no-color=false --format \"$TEST_LOG_FORMAT\" -- -timeout 1800s -p $TEST_PARALLELISM_PKG -parallel $TEST_PARALLELISM $TEST_ARGS "$TEST_PACKAGE" $@" echo $cmd eval $cmd echo "Ok. All tests passed."