From 93dfb7c86f335700912a7be71bf337b55fc39f4a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 15 Sep 2025 10:36:51 +0000 Subject: [PATCH 1/2] Initial plan From 9bc59b7d20be058efa9d6e91dee4b2fbb6c8f010 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 15 Sep 2025 10:47:29 +0000 Subject: [PATCH 2/2] Fix test runner to specify correct binary for server startup Co-authored-by: ngocbd <439333+ngocbd@users.noreply.github.com> --- tests/integration/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 3a95820..0f86137 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -88,7 +88,7 @@ def start(self, temp_dir: Optional[Path] = None) -> None: raise RuntimeError(f"Failed to build server: {build_result.stderr}") # Start the server process - cmd = ["cargo", "run"] + cmd = ["cargo", "run", "--bin", "redisgate"] console.print(f"[blue]Starting RedisGate server: {' '.join(cmd)}[/blue]") env = self.setup_environment()