From b0a86ab4e7d52b4d3092c8248a70ce23e2a28fb3 Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Mon, 8 Apr 2024 09:13:49 -0700 Subject: [PATCH] Switch skip message to UCX-Py issue link --- dask_cuda/tests/test_dgx.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/dask_cuda/tests/test_dgx.py b/dask_cuda/tests/test_dgx.py index f8a2fce8..41bfa6cb 100644 --- a/dask_cuda/tests/test_dgx.py +++ b/dask_cuda/tests/test_dgx.py @@ -110,9 +110,7 @@ def test_tcp_over_ucx(protocol): elif protocol == "ucxx": ucp = pytest.importorskip("ucxx") if _is_ucx_116(ucp): - pytest.skip( - "Wireup may fail in UCX 1.16 in nodes with multiple NICs if TCP is used" - ) + pytest.skip("https://github.com/rapidsai/ucx-py/issues/1037") p = mp.Process(target=_test_tcp_over_ucx, args=(protocol,)) p.start() @@ -229,9 +227,7 @@ def test_ucx_infiniband_nvlink(protocol, params): elif protocol == "ucxx": ucp = pytest.importorskip("ucxx") if _is_ucx_116(ucp) and params["enable_infiniband"] is False: - pytest.skip( - "Wireup may fail in UCX 1.16 in nodes with multiple NICs if TCP is used" - ) + pytest.skip("https://github.com/rapidsai/ucx-py/issues/1037") skip_queue = mp.Queue()