From 4da42c81d62a0dd875cba98db4d565684aa463f9 Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Thu, 26 Oct 2023 10:03:52 -0700 Subject: [PATCH] Skip `test_unreachable` when Python future is enabled --- python/distributed-ucxx/distributed_ucxx/tests/test_ucx.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/python/distributed-ucxx/distributed_ucxx/tests/test_ucx.py b/python/distributed-ucxx/distributed_ucxx/tests/test_ucx.py index bdb55c3c..0ba84b2a 100644 --- a/python/distributed-ucxx/distributed_ucxx/tests/test_ucx.py +++ b/python/distributed-ucxx/distributed_ucxx/tests/test_ucx.py @@ -393,6 +393,10 @@ async def test_ucxx_protocol(ucxx_loop, cleanup, port): @gen_test() +@pytest.mark.skipif( + int(os.environ.get("UCXPY_ENABLE_PYTHON_FUTURE", "1")) != 0, + reason="Segfaults when Python futures are enabled", +) async def test_ucxx_unreachable( ucxx_loop, ):