From 243d143f8a5c2f33a216cdd7079db49ff699ba48 Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Mon, 25 Nov 2024 15:31:32 +0100 Subject: [PATCH] Increase Python core tests timeout (#332) The timeout for Python core tests seems now too tight, possibly due to high CI load at times. Double timeout from 2 minutes to 4 minutes. --- ci/test_common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/test_common.sh b/ci/test_common.sh index d6f2754a..314c66bc 100755 --- a/ci/test_common.sh +++ b/ci/test_common.sh @@ -117,9 +117,9 @@ run_cpp_port_retry() { #################################### Python #################################### run_py_tests() { - CMD_LINE="timeout 2m python -m pytest -vs python/ucxx/ucxx/_lib/tests/" + CMD_LINE="timeout 4m python -m pytest -vs python/ucxx/ucxx/_lib/tests/" log_command "${CMD_LINE}" - timeout 2m python -m pytest -vs python/ucxx/ucxx/_lib/tests/ + timeout 4m python -m pytest -vs python/ucxx/ucxx/_lib/tests/ } run_py_tests_async() {