From 5836cdee34d3278f9c1c6c9eb9f99de1b2e6952b Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Wed, 7 Jun 2023 15:03:48 +0200 Subject: [PATCH] Increase pytest CI timeout (#1196) Rather than individual tests hanging, the primary nightly problem seems to be that the `pytest` timeout is too short, increase it by 10 minutes to check if that is sufficient. Authors: - Peter Andreas Entschev (https://github.com/pentschev) Approvers: - Ray Douglass (https://github.com/raydouglass) --- ci/test_python.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test_python.sh b/ci/test_python.sh index c988ee15e..73a93fcac 100755 --- a/ci/test_python.sh +++ b/ci/test_python.sh @@ -45,7 +45,7 @@ DASK_CUDA_WAIT_WORKERS_MIN_TIMEOUT=20 \ UCXPY_IFNAME=eth0 \ UCX_WARN_UNUSED_ENV_VARS=n \ UCX_MEMTYPE_CACHE=n \ -timeout 30m pytest \ +timeout 40m pytest \ -vv \ --capture=no \ --cache-clear \