From 97af8283cbeb8857d33a362bbb1982f650417feb Mon Sep 17 00:00:00 2001 From: Julian Gilbey Date: Wed, 3 Jan 2024 18:05:19 +0000 Subject: [PATCH] Extend sleep in test_pandas (#8438) --- distributed/diagnostics/tests/test_memory_sampler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distributed/diagnostics/tests/test_memory_sampler.py b/distributed/diagnostics/tests/test_memory_sampler.py index 93b6030b89f..2c591cac308 100644 --- a/distributed/diagnostics/tests/test_memory_sampler.py +++ b/distributed/diagnostics/tests/test_memory_sampler.py @@ -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