(**kwargs)
| 12 | |
| 13 | |
| 14 | def _make_server(**kwargs) -> AgentServer: |
| 15 | async def _fake_entrypoint(ctx): |
| 16 | pass |
| 17 | |
| 18 | opts = ServerOptions(entrypoint_fnc=_fake_entrypoint, **kwargs) |
| 19 | return AgentServer.from_server_options(opts) |
| 20 | |
| 21 | |
| 22 | @pytest.fixture |
no test coverage detected