Skip to content

Commit 8156313

Browse files
committed
Fix test
1 parent c150bd7 commit 8156313

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

distributed/tests/test_worker_memory.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,6 +636,7 @@ def leak():
636636
assert "memory" in out.lower()
637637

638638

639+
@pytest.mark.slow
639640
@gen_cluster(
640641
nthreads=[("", 1)],
641642
client=True,
@@ -674,9 +675,11 @@ def __reduce__(self):
674675
while a.status != Status.paused:
675676
await asyncio.sleep(0.01)
676677
# The initial spill still hasn't finished
677-
assert len(a.data.slow) < 7
678+
assert a.data.fast
679+
assert a.data.fast
678680

679681

682+
@pytest.mark.slow
680683
@gen_cluster(
681684
nthreads=[("", 1)],
682685
client=True,

0 commit comments

Comments
 (0)