From 80e656b53fa06bf7a4a786f56d69f7b0fa33d3de Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Wed, 26 Feb 2025 18:37:43 -0500 Subject: [PATCH] Another loose-egs flag in `test_child_manages_service_nursery` --- tests/test_child_manages_service_nursery.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_child_manages_service_nursery.py b/tests/test_child_manages_service_nursery.py index 21fb392..956fccd 100644 --- a/tests/test_child_manages_service_nursery.py +++ b/tests/test_child_manages_service_nursery.py @@ -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)