From 2c81eddf9009a79bec1a2061daa423df950a47e3 Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Fri, 27 Oct 2023 03:16:35 -0700 Subject: [PATCH] Reenable tests that were segfaulting Some tests were previously disabled in https://github.com/rapidsai/dask-cuda/pull/1264 to prevent segfaults that should now be resolved after upgrading to Arrow 13. --- dask_cuda/tests/test_explicit_comms.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/dask_cuda/tests/test_explicit_comms.py b/dask_cuda/tests/test_explicit_comms.py index 7d8e1b194..bd6770225 100644 --- a/dask_cuda/tests/test_explicit_comms.py +++ b/dask_cuda/tests/test_explicit_comms.py @@ -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( @@ -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)