Skip parallel MCP config test on Windows (#2711)

This commit is contained in:
Jeremiah Lowin 2025-12-24 15:55:50 -05:00 committed by GitHub
commit dccd25af4f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -243,6 +243,10 @@ async def test_multi_client(tmp_path: Path):
assert result_2.data == 3
@pytest.mark.skipif(
sys.platform.startswith("win32"),
reason="Windows has process lifecycle issues with parallel stdio subprocess calls",
)
async def test_multi_client_parallel_calls(tmp_path: Path):
server_script = inspect.cleandoc("""
from fastmcp import FastMCP