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 12d4740 commit 15b24ebCopy full SHA for 15b24eb
tests/client/test_stdio.py
@@ -8,6 +8,13 @@
8
tee: str = shutil.which("tee") # type: ignore
9
10
11
+@pytest.mark.anyio
12
+@pytest.mark.skipif(tee is None, reason="could not find tee command")
13
+async def test_stdio_context_manager_exiting():
14
+ async with stdio_client(StdioServerParameters(command=tee)) as (_, _):
15
+ pass
16
+
17
18
@pytest.mark.anyio
19
@pytest.mark.skipif(tee is None, reason="could not find tee command")
20
async def test_stdio_client():
0 commit comments