Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temporarily skipping some tests because of a bug in Dask #753

Merged
merged 3 commits into from
Oct 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions dask_cuda/tests/test_explicit_comms.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import asyncio
import multiprocessing as mp
import sys

import numpy as np
import pandas as pd
Expand All @@ -18,6 +19,13 @@
from dask_cuda.initialize import initialize
from dask_cuda.utils import get_ucx_config

pytestmark = pytest.mark.skipif(
sys.version_info.minor < 80,
reason="Temporarily skipping some tests because of a bug "
"in Dask see <https://github.com/rapidsai/dask-cuda/issues/746>",
)


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

Expand Down
6 changes: 6 additions & 0 deletions dask_cuda/tests/test_proxy.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import operator
import pickle
import sys
from types import SimpleNamespace

import numpy as np
Expand All @@ -20,6 +21,11 @@
from dask_cuda.proxify_device_objects import proxify_device_objects
from dask_cuda.proxify_host_file import ProxifyHostFile

pytestmark = pytest.mark.skipif(
sys.version_info.minor < 8,
reason="Temporarily skipping some tests because of a bug "
"in Dask see <https://github.com/rapidsai/dask-cuda/issues/746>",
)
ProxifyHostFile.register_disk_spilling() # Make the "disk" serializer available


Expand Down