From 53c921de8b07467c3e88b90b86bc0ecb15d46072 Mon Sep 17 00:00:00 2001 From: Matthew Rocklin Date: Wed, 19 Sep 2018 14:59:32 -0400 Subject: [PATCH] relax test_dont_hold_on_to_large_messages I suspect that this mail fail sometimes because we refresh the reference to x every 50ms, which may be too short for GC? Just a guess. --- distributed/tests/test_batched.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distributed/tests/test_batched.py b/distributed/tests/test_batched.py index 1fcf026b68b..49f9e22633b 100644 --- a/distributed/tests/test_batched.py +++ b/distributed/tests/test_batched.py @@ -269,7 +269,7 @@ def test_dont_hold_on_to_large_messages(c, s, a, b): f.f_code.co_name, f.f_code.co_filename, sorted(f.f_locals)) pytest.fail("array should have been destroyed") - yield gen.sleep(0.05) + yield gen.sleep(0.200) @gen_test()