Skip to content

Commit

Permalink
skip test on MacOSX
Browse files Browse the repository at this point in the history
  • Loading branch information
crusaderky committed Apr 29, 2022
1 parent 6d12d8c commit c43fc03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 1 addition & 2 deletions distributed/spill.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@

logger = logging.getLogger(__name__)
has_zict_210 = parse_version(zict.__version__) >= parse_version("2.1.0")
# At the moment of writing, zict 2.2.0 has not been released yet. Support git tip.
has_zict_220 = parse_version(zict.__version__) >= parse_version("2.2.0.dev2")
has_zict_220 = parse_version(zict.__version__) >= parse_version("2.2.0")


class SpilledSize(NamedTuple):
Expand Down
2 changes: 2 additions & 0 deletions distributed/tests/test_worker_memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

import distributed.system
from distributed import Client, Event, Nanny, Worker, wait
from distributed.compatibility import MACOS
from distributed.core import Status
from distributed.metrics import monotonic
from distributed.spill import has_zict_210
Expand Down Expand Up @@ -763,6 +764,7 @@ def __reduce__(self):


@pytest.mark.slow
@pytest.mark.skipif(MACOS, reason="https://github.com/dask/distributed/issues/6233")
@gen_cluster(
nthreads=[("", 1)],
client=True,
Expand Down

0 comments on commit c43fc03

Please sign in to comment.