From 57e664d92b5f6a28e4510a12ca004a95381ce501 Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Fri, 27 Oct 2023 02:01:19 -0700 Subject: [PATCH] Temporarily disable tests due to AWS segfaults --- dask_cuda/tests/test_explicit_comms.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dask_cuda/tests/test_explicit_comms.py b/dask_cuda/tests/test_explicit_comms.py index bd6770225..7e147ffbb 100644 --- a/dask_cuda/tests/test_explicit_comms.py +++ b/dask_cuda/tests/test_explicit_comms.py @@ -259,6 +259,11 @@ 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": + if protocol == "ucx": + 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)