From 274850c629861cb8ef2156e458208ae1e5d018f3 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Thu, 17 Mar 2022 02:22:22 +0200 Subject: [PATCH] bpo-47038: Increase a test timeout for slow CI machines --- Lib/test/test_asyncio/test_waitfor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_asyncio/test_waitfor.py b/Lib/test/test_asyncio/test_waitfor.py index 874aabf9bd715e..45498fa097f6bc 100644 --- a/Lib/test/test_asyncio/test_waitfor.py +++ b/Lib/test/test_asyncio/test_waitfor.py @@ -144,7 +144,7 @@ async def foo(): self.assertTrue(fut.done()) # it should have been cancelled due to the timeout self.assertTrue(fut.cancelled()) - self.assertLess(t1 - t0, 0.2) + self.assertLess(t1 - t0, 0.5) self.assertEqual(foo_running, False) async def test_wait_for_blocking(self):