Skip to content

Commit

Permalink
Extend sleep in test_pandas (#8440)
Browse files Browse the repository at this point in the history
Co-authored-by: Julian Gilbey <jdg@debian.org>
  • Loading branch information
juliangilbey and Julian Gilbey committed Jan 8, 2024
1 parent e8e9f70 commit 7562f9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distributed/diagnostics/tests/test_memory_sampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ async def test_pandas(c, s, a, b, align):
async with ms.sample("foo", measure="managed", interval=0.15):
f = c.submit(lambda: 1)
await f
await asyncio.sleep(0.7)
await asyncio.sleep(1.5)

assert ms.samples["foo"][0][1] == 0
assert ms.samples["foo"][-1][1] > 0
Expand Down

0 comments on commit 7562f9c

Please sign in to comment.