(request)
| 151 | |
| 152 | @pytest_asyncio.fixture(scope="module", loop_scope="module") |
| 153 | async def mctx(request): |
| 154 | context = CommandsMultiClientContext() |
| 155 | await context.setup() |
| 156 | yield context |
| 157 | any_failed = request.session.stash.get("any_test_failed", False) |
| 158 | await context.teardown(test_failed=any_failed) |
| 159 | |
| 160 | |
| 161 | @pytest_asyncio.fixture(autouse=True, loop_scope="module") |
nothing calls this directly
no test coverage detected
searching dependent graphs…