Skip to content

Commit

Permalink
skip explicit comms tests when dask-expr is active
Browse files Browse the repository at this point in the history
  • Loading branch information
rjzamora committed Mar 18, 2024
1 parent 62c27d5 commit 6c9a214
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions dask_cuda/tests/test_explicit_comms.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@
mp = mp.get_context("spawn") # type: ignore
ucp = pytest.importorskip("ucp")

# Skip these tests when dask-expr is active (for now)
pytest.mark.skipif(
dask.config.get("dataframe.query-planning", None) is not False,
reason="https://github.com/rapidsai/dask-cuda/issues/1311",
)

# Notice, all of the following tests is executed in a new process such
# that UCX options of the different tests doesn't conflict.

Expand Down

0 comments on commit 6c9a214

Please sign in to comment.