From de8761f25a7672cd3e815ef8d7a0ced1ac7cf3c1 Mon Sep 17 00:00:00 2001 From: Xubin Ren <52506698+Re-bin@users.noreply.github.com> Date: Mon, 18 May 2026 01:19:45 +0800 Subject: [PATCH] fix(test): add gateway llm runtime fake --- tests/cli/test_commands.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/cli/test_commands.py b/tests/cli/test_commands.py index 8baa5d2f8..2778ddbbb 100644 --- a/tests/cli/test_commands.py +++ b/tests/cli/test_commands.py @@ -1549,6 +1549,9 @@ def test_gateway_health_endpoint_binds_and_serves_expected_responses( self.dream = _FakeDream() self.sessions = _FakeSessionManager() + def llm_runtime(self) -> None: + return None + async def run(self) -> None: await asyncio.Event().wait()