From 16a3321a3883863ecc8201f9d47d38845183a340 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Mon, 29 Nov 2021 19:43:10 -0500 Subject: [PATCH] Increase timeout for windows.. --- tests/test_cancellation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cancellation.py b/tests/test_cancellation.py index 726ffd9..9f8ae0d 100644 --- a/tests/test_cancellation.py +++ b/tests/test_cancellation.py @@ -544,7 +544,7 @@ def test_fast_graceful_cancel_when_spawn_task_in_soft_proc_wait_for_daemon( await p.run(do_nuthin) finally: duration = time.time() - start - if duration > 1: + if duration > 2.9: raise trio.TooSlowError( 'daemon cancel was slower then necessary..' )