diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2022-03-17 00:54:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-17 00:54:36 (GMT) |
commit | a7c54148322781cb0f332d440a3454d550ef6414 (patch) | |
tree | 81cd084d2062619a2e5bbae9b12220b8ba5681f0 /Lib/test/test_asyncio/test_waitfor.py | |
parent | 3dd9bfac04d3dcdbfd3f8011a6c9d4b9ac8c116a (diff) | |
download | cpython-a7c54148322781cb0f332d440a3454d550ef6414.zip cpython-a7c54148322781cb0f332d440a3454d550ef6414.tar.gz cpython-a7c54148322781cb0f332d440a3454d550ef6414.tar.bz2 |
bpo-47038: Increase a test timeout for slow CI machines (GH-31951)
Diffstat (limited to 'Lib/test/test_asyncio/test_waitfor.py')
-rw-r--r-- | Lib/test/test_asyncio/test_waitfor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_waitfor.py b/Lib/test/test_asyncio/test_waitfor.py index 874aabf..45498fa 100644 --- a/Lib/test/test_asyncio/test_waitfor.py +++ b/Lib/test/test_asyncio/test_waitfor.py @@ -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): |