Skip to content

Commit

Permalink
Temporarily disable tests due to AWS segfaults
Browse files Browse the repository at this point in the history
  • Loading branch information
pentschev committed Oct 27, 2023
1 parent 8e60caa commit 6eec79f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions dask_cuda/tests/test_explicit_comms.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,8 @@ def _test_dataframe_shuffle(backend, protocol, n_workers, _partitions):
@pytest.mark.parametrize("_partitions", [True, False])
def test_dataframe_shuffle(backend, protocol, nworkers, _partitions):
if backend == "cudf":
pytest.skip("Temporarily disable due to segfaults in libaws-cpp-sdk-core.so")

pytest.importorskip("cudf")

p = mp.Process(
Expand Down Expand Up @@ -259,6 +261,8 @@ def _test_dataframe_shuffle_merge(backend, protocol, n_workers):
@pytest.mark.parametrize("protocol", ["tcp", "ucx"])
def test_dataframe_shuffle_merge(backend, protocol, nworkers):
if backend == "cudf":
pytest.skip("Temporarily disable due to segfaults in libaws-cpp-sdk-core.so")

pytest.importorskip("cudf")
p = mp.Process(
target=_test_dataframe_shuffle_merge, args=(backend, protocol, nworkers)
Expand Down

0 comments on commit 6eec79f

Please sign in to comment.