From 56559a9f34b67b6c1f3412533e8159917d0ff942 Mon Sep 17 00:00:00 2001 From: Florian Jetter Date: Fri, 25 Oct 2024 11:49:32 +0200 Subject: [PATCH] Skip test_tell_workers_when_peers_have_left on py10 (#8910) --- distributed/tests/test_scheduler.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/distributed/tests/test_scheduler.py b/distributed/tests/test_scheduler.py index c07bc2a0a6..e8cfb1aee0 100644 --- a/distributed/tests/test_scheduler.py +++ b/distributed/tests/test_scheduler.py @@ -4831,6 +4831,10 @@ async def test_submit_dependency_of_erred_task(c, s, a, b): await y +@pytest.mark.skipif( + sys.version_info <= (3, 10), + reason="asyncio.wait_for is unreliable on 3.10 and below", +) @gen_cluster( client=True, config={