Skip to content

Commit

Permalink
fix skip
Browse files Browse the repository at this point in the history
  • Loading branch information
rjzamora committed Mar 18, 2024
1 parent 6c9a214 commit 837e805
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions dask_cuda/tests/test_explicit_comms.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,16 @@
from dask_cuda.explicit_comms.dataframe.shuffle import shuffle as explicit_comms_shuffle
from dask_cuda.utils_test import IncreasedCloseTimeoutNanny

mp = mp.get_context("spawn") # type: ignore
ucp = pytest.importorskip("ucp")

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

mp = mp.get_context("spawn") # type: ignore
ucp = pytest.importorskip("ucp")


# 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 837e805

Please sign in to comment.