We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ffb75f commit 6170625Copy full SHA for 6170625
tests/agents/test_mcp_agent.py
@@ -1,9 +1,12 @@
1
+import sys
2
+
3
import pytest
4
5
from coagent.agents.mcp_agent import MCPAgent
6
7
8
class TestMCPAgent:
9
+ @pytest.mark.skipif(sys.platform == "win32", reason="Does not run on Windows.")
10
@pytest.mark.asyncio
11
async def test_get_tools(self):
12
agent = MCPAgent(mcp_server_base_url="python tests/agents/mcp_server.py")
0 commit comments