From 6939c3d1bc26fb2758e4c51070f7624db9d7008f Mon Sep 17 00:00:00 2001 From: Gabe Joseph Date: Wed, 2 Nov 2022 22:44:54 -0600 Subject: [PATCH] Un-skip `test_nested_compute` --- distributed/tests/test_client.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/distributed/tests/test_client.py b/distributed/tests/test_client.py index c0d5b716220..ee54a756476 100644 --- a/distributed/tests/test_client.py +++ b/distributed/tests/test_client.py @@ -6,7 +6,6 @@ import gc import inspect import logging -import math import operator import os import pathlib @@ -5613,12 +5612,6 @@ async def close(): loop.run_sync(close) # TODO: client.close() does not unset global client -# FIXME shouldn't consistently fail on windows, may be an actual bug -@pytest.mark.skipif( - WINDOWS - and math.isfinite(dask.config.get("distributed.scheduler.worker-saturation")), - reason="flaky on Windows with queuing active", -) @pytest.mark.slow @gen_cluster(client=True, Worker=Nanny, timeout=60, nthreads=[("127.0.0.1", 3)] * 2) async def test_nested_compute(c, s, a, b):