mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-21 13:04:18 +02:00
Skip parallel MCP config test on Windows (#2711)
This commit is contained in:
parent
7a1796fbdf
commit
dccd25af4f
1 changed files with 4 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue