Skip to content

Commit

Permalink
Reenable tests that were segfaulting
Browse files Browse the repository at this point in the history
Some tests were previously disabled in
#1264 to prevent segfaults
that should now be resolved after upgrading to Arrow 13.
  • Loading branch information
pentschev committed Oct 27, 2023
1 parent fbeee9c commit 2c81edd
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions dask_cuda/tests/test_explicit_comms.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,6 @@ 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 @@ -261,8 +259,6 @@ 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 2c81edd

Please sign in to comment.