Skip to content

Commit

Permalink
Skip test_unreachable when Python future is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
pentschev committed Oct 26, 2023
1 parent f3e0c6f commit 2a89d6f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/distributed-ucxx/distributed_ucxx/tests/test_ucx.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
):
Expand Down

0 comments on commit 2a89d6f

Please sign in to comment.