diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2021-08-29 11:04:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-29 11:04:40 (GMT) |
commit | 2a8127cafe1d196f858a3ecabf5f1df3eebf9a12 (patch) | |
tree | ddf073f1752e1dd20aba534964da961aeecf8c95 /Lib/test/test_asyncgen.py | |
parent | 07d3d54f4e84b1259b800884b202701f69e408d8 (diff) | |
download | cpython-2a8127cafe1d196f858a3ecabf5f1df3eebf9a12.zip cpython-2a8127cafe1d196f858a3ecabf5f1df3eebf9a12.tar.gz cpython-2a8127cafe1d196f858a3ecabf5f1df3eebf9a12.tar.bz2 |
bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)
Diffstat (limited to 'Lib/test/test_asyncgen.py')
-rw-r--r-- | Lib/test/test_asyncgen.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_asyncgen.py b/Lib/test/test_asyncgen.py index 77c15c0..a557cb5 100644 --- a/Lib/test/test_asyncgen.py +++ b/Lib/test/test_asyncgen.py @@ -3,6 +3,7 @@ import types import unittest from test.support.import_helper import import_module +from test.support import gc_collect asyncio = import_module("asyncio") @@ -871,6 +872,7 @@ class AsyncGenAsyncioTest(unittest.TestCase): await g.__anext__() await g.__anext__() del g + gc_collect() # For PyPy or other GCs. await asyncio.sleep(0.1) |