()
| 110 | |
| 111 | @pytest.mark.anyio |
| 112 | async def test_collapsing_task_group_one_exc() -> None: |
| 113 | class MyException(Exception): |
| 114 | pass |
| 115 | |
| 116 | with pytest.raises(MyException): |
| 117 | async with create_collapsing_task_group(): |
| 118 | raise MyException |
| 119 | |
| 120 | |
| 121 | @pytest.mark.anyio |
nothing calls this directly
no test coverage detected