Skip to content

Commit

Permalink
Increase test timeouts further to reduce CI failures (#1234)
Browse files Browse the repository at this point in the history
Authors:
  - Peter Andreas Entschev (https://github.com/pentschev)

Approvers:
  - GALI PREM SAGAR (https://github.com/galipremsagar)

URL: #1234
  • Loading branch information
pentschev authored Sep 25, 2023
1 parent 4232a8b commit ec80f97
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dask_cuda/tests/test_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
4 changes: 2 additions & 2 deletions dask_cuda/tests/test_spill.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}):
Expand Down Expand Up @@ -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")

Expand Down

0 comments on commit ec80f97

Please sign in to comment.