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.
tee
1 parent 5618597 commit 9e37091Copy full SHA for 9e37091
tests/client/test_stdio.py
@@ -6,10 +6,10 @@
6
from mcp.types import JSONRPCMessage, JSONRPCRequest, JSONRPCResponse
7
8
tee: str = shutil.which("tee") # type: ignore
9
-assert tee is not None, "could not find tee command"
10
11
12
@pytest.mark.anyio
+@pytest.mark.skipif(tee is None, reason="could not find tee command")
13
async def test_stdio_client():
14
server_parameters = StdioServerParameters(command=tee)
15
0 commit comments