(ctx: E2ETestContext)
| 295 | |
| 296 | @pytest_asyncio.fixture(loop_scope="module") |
| 297 | async def _fixture(ctx: E2ETestContext): |
| 298 | handler = make_handler() |
| 299 | client = build_isolated_client(ctx, handler, extra_env) |
| 300 | try: |
| 301 | yield client, handler |
| 302 | finally: |
| 303 | try: |
| 304 | await client.stop() |
| 305 | except Exception: |
| 306 | # Best-effort teardown during fixture cleanup. |
| 307 | pass |
| 308 | |
| 309 | return _fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…