bpo-42553: Fix test_asyncio.test_call_later() (GH-23627)

Fix test_asyncio.test_call_later() race condition: don't measure
asyncio performance in the call_later() unit test. The test failed
randomly on the CI.
This commit is contained in:
Victor Stinner 2020-12-03 13:56:41 +01:00 committed by GitHub
parent 2ad93821a6
commit 7e5e13d113
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -294,11 +294,8 @@ class EventLoopTestsMixin:
self.loop.stop() self.loop.stop()
self.loop.call_later(0.1, callback, 'hello world') self.loop.call_later(0.1, callback, 'hello world')
t0 = time.monotonic()
self.loop.run_forever() self.loop.run_forever()
t1 = time.monotonic()
self.assertEqual(results, ['hello world']) self.assertEqual(results, ['hello world'])
self.assertTrue(0.08 <= t1-t0 <= 0.8, t1-t0)
def test_call_soon(self): def test_call_soon(self):
results = [] results = []

View File

@ -0,0 +1,3 @@
Fix ``test_asyncio.test_call_later()`` race condition: don't measure asyncio
performance in the ``call_later()`` unit test. The test failed randomly on
the CI.