Skip to content

Commit

Permalink
Mark explicit comms tests with xfail
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham committed Mar 9, 2021
1 parent 098f246 commit 2edab05
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dask_cuda/tests/test_explicit_comms.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ def _test_dataframe_merge(backend, protocol, n_workers):
@pytest.mark.parametrize("nworkers", [1, 2, 4])
@pytest.mark.parametrize("backend", ["pandas", "cudf"])
@pytest.mark.parametrize("protocol", ["tcp", "ucx"])
@pytest.mark.xfail(reason="https://github.com/rapidsai/dask-cuda/issues/549")
def test_dataframe_merge(backend, protocol, nworkers):
if backend == "cudf":
pytest.importorskip("cudf")
Expand Down Expand Up @@ -203,6 +204,7 @@ def _test_dataframe_shuffle(backend, protocol, n_workers):
@pytest.mark.parametrize("nworkers", [1, 2, 3])
@pytest.mark.parametrize("backend", ["pandas", "cudf"])
@pytest.mark.parametrize("protocol", ["tcp", "ucx"])
@pytest.mark.xfail(reason="https://github.com/rapidsai/dask-cuda/issues/549")
def test_dataframe_shuffle(backend, protocol, nworkers):
if backend == "cudf":
pytest.importorskip("cudf")
Expand Down Expand Up @@ -243,6 +245,7 @@ def check_shuffle(in_cluster):
check_shuffle(False)


@pytest.mark.xfail(reason="https://github.com/rapidsai/dask-cuda/issues/549")
def test_dask_use_explicit_comms():
p = mp.Process(target=_test_dask_use_explicit_comms)
p.start()
Expand Down

0 comments on commit 2edab05

Please sign in to comment.