Skip to content

Commit 4da42c8

Browse files
committed
Skip test_unreachable when Python future is enabled
1 parent fb9e71a commit 4da42c8

File tree

1 file changed

+4
-0
lines changed
  • python/distributed-ucxx/distributed_ucxx/tests

1 file changed

+4
-0
lines changed

python/distributed-ucxx/distributed_ucxx/tests/test_ucx.py

+4
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,10 @@ async def test_ucxx_protocol(ucxx_loop, cleanup, port):
393393

394394

395395
@gen_test()
396+
@pytest.mark.skipif(
397+
int(os.environ.get("UCXPY_ENABLE_PYTHON_FUTURE", "1")) != 0,
398+
reason="Segfaults when Python futures are enabled",
399+
)
396400
async def test_ucxx_unreachable(
397401
ucxx_loop,
398402
):

0 commit comments

Comments
 (0)