Skip to content

Commit

Permalink
Switch skip message to UCX-Py issue link
Browse files Browse the repository at this point in the history
  • Loading branch information
pentschev committed Apr 8, 2024
1 parent 129dc14 commit b0a86ab
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions dask_cuda/tests/test_dgx.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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()

Expand Down

0 comments on commit b0a86ab

Please sign in to comment.