From cdd7874190bc748b1bd1a697deb3afaf2778b2c9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 30 Jun 2026 11:36:54 +0000 Subject: [PATCH 1/2] Initial plan From 0ee0f10e09756e46ac9ee30cc07893da08ab2a2b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 30 Jun 2026 11:42:35 +0000 Subject: [PATCH 2/2] test(api): bypass mock auth in failover tests --- tests/api/test_failover.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/api/test_failover.py b/tests/api/test_failover.py index ce68e043..c941761a 100644 --- a/tests/api/test_failover.py +++ b/tests/api/test_failover.py @@ -61,7 +61,11 @@ async def _call(directives: dict, *, failover: bool = True, force: bool = True) _failover_force=force, _failover_backoff=0.001, ) - headers = {"authorization": "Bearer test-token", **directives} + headers = { + "authorization": "Bearer test-token", + "x-lk-mock-skip-auth": "true", + **directives, + } return await client.request("RoomService", "CreateRoom", CreateRoomRequest(), headers, Room)