From 7661210e05a43d2e3afabdbdc903e17970ec9f83 Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Tue, 26 Apr 2022 01:08:42 -0700 Subject: [PATCH] Increase spill tests timeout to 30 seconds --- dask_cuda/tests/test_spill.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dask_cuda/tests/test_spill.py b/dask_cuda/tests/test_spill.py index 1978a57ea..b14c5bc3a 100644 --- a/dask_cuda/tests/test_spill.py +++ b/dask_cuda/tests/test_spill.py @@ -118,7 +118,7 @@ def delayed_worker_assert(total_size, device_chunk_overhead, serialized_chunk_ov }, ], ) -@gen_test(timeout=20) +@gen_test(timeout=30) async def test_cupy_cluster_device_spill(params): cupy = pytest.importorskip("cupy") with dask.config.set({"distributed.worker.memory.terminate": False}): @@ -203,7 +203,7 @@ async def test_cupy_cluster_device_spill(params): }, ], ) -@gen_test(timeout=20) +@gen_test(timeout=30) async def test_cudf_cluster_device_spill(params): cudf = pytest.importorskip("cudf")