From ebcd0d798220dc8f5949006f0f45ee67abb8dae7 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Fri, 21 Mar 2025 19:06:29 -0700 Subject: [PATCH] ci_cd_server_path --- tests/mcp_tests/test_mcp_litellm_client.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/mcp_tests/test_mcp_litellm_client.py b/tests/mcp_tests/test_mcp_litellm_client.py index e69aec8553..0f8fb7994a 100644 --- a/tests/mcp_tests/test_mcp_litellm_client.py +++ b/tests/mcp_tests/test_mcp_litellm_client.py @@ -18,10 +18,12 @@ import json @pytest.mark.asyncio async def test_mcp_agent(): + local_server_path = "./mcp_server.py" + ci_cd_server_path = "tests/mcp_tests/mcp_server.py" server_params = StdioServerParameters( command="python3", # Make sure to update to the full absolute path to your math_server.py file - args=["./mcp_server.py"], + args=[ci_cd_server_path], ) async with stdio_client(server_params) as (read, write):