Skip to content

Commit

Permalink
Skip test_client.py::test_file_descriptors_dont_leak on Mac OS (#8080)
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikmakait authored Aug 8, 2023
1 parent 9255987 commit ef6d4bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion distributed/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
)
from distributed.cluster_dump import load_cluster_dump
from distributed.comm import CommClosedError
from distributed.compatibility import LINUX, WINDOWS
from distributed.compatibility import LINUX, MACOS, WINDOWS
from distributed.core import Status, error_message
from distributed.diagnostics.plugin import WorkerPlugin
from distributed.metrics import time
Expand Down Expand Up @@ -6383,6 +6383,7 @@ async def test_wait_for_workers(c, s, a, b):


@pytest.mark.skipif(WINDOWS, reason="num_fds not supported on windows")
@pytest.mark.skipif(MACOS, reason="dask/distributed#8075")
@pytest.mark.parametrize(
"Worker", [Worker, pytest.param(Nanny, marks=[pytest.mark.slow])]
)
Expand Down

0 comments on commit ef6d4bf

Please sign in to comment.