Skip to content

Commit cf7a25f

Browse files
committed
CR
1 parent ad75cf7 commit cf7a25f

File tree

1 file changed

+26
-21
lines changed

1 file changed

+26
-21
lines changed

tests/test_trio_asyncio.py

+26-21
Original file line numberDiff line numberDiff line change
@@ -243,31 +243,36 @@ async def iterate_one(label, extra=""):
243243

244244
sys.unraisablehook, prev_hook = sys.__unraisablehook__, sys.unraisablehook
245245
try:
246+
before_hooks = sys.get_asyncgen_hooks()
247+
246248
start_time = trio.current_time()
247249
with trio.move_on_after(loop_timeout) as scope:
248250
if loop_timeout == 0:
249251
scope.cancel()
250-
async with trio_asyncio.open_loop() as loop:
251-
async with trio_asyncio.open_loop() as loop2:
252-
async with trio.open_nursery() as nursery:
253-
# Make sure the iterate_one aio tasks don't get
254-
# cancelled before they start:
255-
nursery.cancel_scope.shield = True
256-
try:
257-
nursery.start_soon(iterate_one, "trio")
258-
nursery.start_soon(
259-
loop.run_aio_coroutine, iterate_one("asyncio")
260-
)
261-
nursery.start_soon(
262-
loop2.run_aio_coroutine, iterate_one("asyncio", "2")
263-
)
264-
await loop.synchronize()
265-
await loop2.synchronize()
266-
finally:
267-
nursery.cancel_scope.shield = False
268-
if not alive_on_exit and sys.implementation.name == "pypy":
269-
for _ in range(5):
270-
gc.collect()
252+
async with trio_asyncio.open_loop() as loop, trio_asyncio.open_loop() as loop2:
253+
assert sys.get_asyncgen_hooks() != before_hooks
254+
async with trio.open_nursery() as nursery:
255+
# Make sure the iterate_one aio tasks don't get
256+
# cancelled before they start:
257+
nursery.cancel_scope.shield = True
258+
try:
259+
nursery.start_soon(iterate_one, "trio")
260+
nursery.start_soon(
261+
loop.run_aio_coroutine, iterate_one("asyncio")
262+
)
263+
nursery.start_soon(
264+
loop2.run_aio_coroutine, iterate_one("asyncio", "2")
265+
)
266+
await loop.synchronize()
267+
await loop2.synchronize()
268+
finally:
269+
nursery.cancel_scope.shield = False
270+
if not alive_on_exit and sys.implementation.name == "pypy":
271+
for _ in range(5):
272+
gc.collect()
273+
274+
# Make sure we cleaned up properly once all trio-aio loops were closed
275+
assert sys.get_asyncgen_hooks() == before_hooks
271276

272277
# asyncio agens should be finalized as soon as asyncio loop ends,
273278
# regardless of liveness

0 commit comments

Comments
 (0)