()
| 282 | |
| 283 | @pytest.fixture(scope="session") |
| 284 | def server() -> typing.Iterator[TestServer]: |
| 285 | config = Config(app=app, lifespan="off", loop="asyncio") |
| 286 | server = TestServer(config=config) |
| 287 | yield from serve_in_thread(server) |
nothing calls this directly
no test coverage detected