We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad5181b commit 53203bfCopy full SHA for 53203bf
tests/test_executors.py
@@ -21,6 +21,7 @@ async def run():
21
coros.append(self.loop.run_in_executor(pool, fib, i))
22
res = await asyncio.gather(*coros, loop=self.loop)
23
self.assertEqual(res, fib10)
24
+ await asyncio.sleep(0.01)
25
26
fib10 = [fib(i) for i in range(10)]
27
self.loop.run_until_complete(run())
0 commit comments