Skip to content

Commit

Permalink
Unskip test
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikmakait committed Dec 9, 2022
1 parent 3c90f50 commit 9040137
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions distributed/shuffle/tests/test_shuffle.py
Original file line number Diff line number Diff line change
Expand Up @@ -993,10 +993,8 @@ async def test_restrictions(c, s, a, b):
assert all(stringify(key) in a.data for key in y.__dask_keys__())


@pytest.mark.skip(reason="Don't clean up forgotten shuffles")
@gen_cluster(client=True)
async def test_delete_some_results(c, s, a, b):
# FIXME: This works but not reliably. It fails every ~25% of runs
df = dask.datasets.timeseries(
start="2000-01-01",
end="2000-01-10",
Expand All @@ -1010,10 +1008,10 @@ async def test_delete_some_results(c, s, a, b):
x = x.partitions[: x.npartitions // 2].persist()

await c.compute(x.size)

# await clean_worker(a)
# await clean_worker(b)
# await clean_scheduler(s)
del x
await clean_worker(a)
await clean_worker(b)
await clean_scheduler(s)


@gen_cluster(client=True)
Expand Down

0 comments on commit 9040137

Please sign in to comment.