8000
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.
uv
1 parent ab02c0d commit 6a85c7fCopy full SHA for 6a85c7f
tests/client/test_stdio.py
@@ -11,6 +11,7 @@
11
from mcp.types import JSONRPCMessage, JSONRPCRequest, JSONRPCResponse
12
13
tee: str = shutil.which("tee") # type: ignore
14
+uv: str = shutil.which("uv") # type: ignore
15
16
17
@pytest.mark.anyio
@@ -49,6 +50,7 @@ async def test_stdio_client():
49
50
51
52
53
+@pytest.mark.skipif(uv is None, reason="could not find uv command")
54
async def test_stdio_client_bad_path():
55
"""Check that the connection doesn't hang if process errors."""
56
server_parameters = StdioServerParameters(
0 commit comments