]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-47038: Increase a test timeout for slow CI machines (GH-31951)
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Thu, 17 Mar 2022 00:54:36 +0000 (02:54 +0200)
committerGitHub <noreply@github.com>
Thu, 17 Mar 2022 00:54:36 +0000 (02:54 +0200)
Lib/test/test_asyncio/test_waitfor.py

index 874aabf9bd715e286d19cc22b3c4551bf439bfec..45498fa097f6bccab7c7e3781fdd4f857c334a75 100644 (file)
@@ -144,7 +144,7 @@ class AsyncioWaitForTest(unittest.IsolatedAsyncioTestCase):
         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):