()
| 92 | |
| 93 | @pytest_asyncio.fixture(scope="module", loop_scope="module") |
| 94 | async def explicit_token_ctx(): |
| 95 | ctx = ConnectionTokenContext(token="right-token") |
| 96 | await ctx.setup() |
| 97 | yield ctx |
| 98 | await ctx.teardown() |
| 99 | |
| 100 | |
| 101 | @pytest_asyncio.fixture(scope="module", loop_scope="module") |
nothing calls this directly
no test coverage detected
searching dependent graphs…