From 5a6d3d462530e39fba9871b47352636d72261484 Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Thu, 21 Sep 2023 07:59:40 -0700 Subject: [PATCH 1/3] Increase test timeouts further to check behavior in CI --- dask_cuda/tests/test_proxy.py | 2 +- dask_cuda/tests/test_spill.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dask_cuda/tests/test_proxy.py b/dask_cuda/tests/test_proxy.py index 53282bef1..c779a39ef 100644 --- a/dask_cuda/tests/test_proxy.py +++ b/dask_cuda/tests/test_proxy.py @@ -400,7 +400,7 @@ def _pxy_deserialize(self): @pytest.mark.parametrize("send_serializers", [None, ("dask", "pickle"), ("cuda",)]) @pytest.mark.parametrize("protocol", ["tcp", "ucx"]) -@gen_test(timeout=60) +@gen_test(timeout=120) async def test_communicating_proxy_objects(protocol, send_serializers): """Testing serialization of cuDF dataframe when communicating""" cudf = pytest.importorskip("cudf") diff --git a/dask_cuda/tests/test_spill.py b/dask_cuda/tests/test_spill.py index cd36cb781..859f55d99 100644 --- a/dask_cuda/tests/test_spill.py +++ b/dask_cuda/tests/test_spill.py @@ -121,7 +121,7 @@ def delayed_worker_assert( }, ], ) -@gen_test(timeout=30) +@gen_test(timeout=120) async def test_cupy_cluster_device_spill(params): cupy = pytest.importorskip("cupy") with dask.config.set({"distributed.worker.memory.terminate": False}): @@ -212,7 +212,7 @@ async def test_cupy_cluster_device_spill(params): }, ], ) -@gen_test(timeout=30) +@gen_test(timeout=120) async def test_cudf_cluster_device_spill(params): cudf = pytest.importorskip("cudf") From 11d2fa9c8bbdb8508957f01baabd04fb47751d7e Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Fri, 22 Sep 2023 05:03:12 -0700 Subject: [PATCH 2/3] Pin to aws-sdk-cpp<1.11 for testing --- dependencies.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/dependencies.yaml b/dependencies.yaml index 46500c172..f3c1da479 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -115,6 +115,7 @@ dependencies: common: - output_types: [conda] packages: + - aws-sdk-cpp<1.11 - cudf=23.10 - dask-cudf=23.10 - kvikio=23.10 From 6aa20b87e8c5b6817ccbfacf9467d7f01f3bae98 Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Sat, 23 Sep 2023 02:21:58 -0700 Subject: [PATCH 3/3] Revert "Pin to aws-sdk-cpp<1.11 for testing" This reverts commit 11d2fa9c8bbdb8508957f01baabd04fb47751d7e. --- dependencies.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/dependencies.yaml b/dependencies.yaml index f3c1da479..46500c172 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -115,7 +115,6 @@ dependencies: common: - output_types: [conda] packages: - - aws-sdk-cpp<1.11 - cudf=23.10 - dask-cudf=23.10 - kvikio=23.10