diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-03-17 01:19:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-17 01:19:18 (GMT) |
commit | 4e9bb27eaeb8bedcec6f25f4345824b50fc25337 (patch) | |
tree | 3f49a948f2e7147169d52088b73a4b230a1a2df1 | |
parent | 0412e3ae03a694af1e27d4af61ca503a6513394d (diff) | |
download | cpython-4e9bb27eaeb8bedcec6f25f4345824b50fc25337.zip cpython-4e9bb27eaeb8bedcec6f25f4345824b50fc25337.tar.gz cpython-4e9bb27eaeb8bedcec6f25f4345824b50fc25337.tar.bz2 |
bpo-47038: Increase a test timeout for slow CI machines (GH-31951)
(cherry picked from commit a7c54148322781cb0f332d440a3454d550ef6414)
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
-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): |