Another loose-egs flag in `test_child_manages_service_nursery`

py313_support
Tyler Goodlet 2025-02-26 18:37:43 -05:00
parent 0349d492ab
commit 80e656b53f
1 changed files with 3 additions and 1 deletions

View File

@ -117,7 +117,9 @@ async def open_actor_local_nursery(
ctx: tractor.Context,
):
global _nursery
async with trio.open_nursery() as n:
async with trio.open_nursery(
strict_exception_groups=False,
) as n:
_nursery = n
await ctx.started()
await trio.sleep(10)