(pk: int)
| 172 | |
| 173 | |
| 174 | def query_without_app(pk: int) -> int: |
| 175 | async def runner() -> bool: |
| 176 | async with register_orm(): |
| 177 | return await Users.filter(id__gt=pk).count() |
| 178 | |
| 179 | return anyio.run(runner) |
| 180 | |
| 181 | |
| 182 | def test_query_without_app(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…