(
app: Application,
*,
host: str = "127.0.0.1",
port: int | None = None,
**kwargs: Any,
)
| 300 | servers = [] |
| 301 | |
| 302 | async def go( |
| 303 | app: Application, |
| 304 | *, |
| 305 | host: str = "127.0.0.1", |
| 306 | port: int | None = None, |
| 307 | **kwargs: Any, |
| 308 | ) -> TestServer: |
| 309 | server = TestServer(app, host=host, port=port) |
| 310 | await server.start_server(loop=loop, **kwargs) |
| 311 | servers.append(server) |
| 312 | return server |
| 313 | |
| 314 | yield go |
| 315 |
nothing calls this directly
no test coverage detected