From 0febc4cd82794c23dac5eb3c583dbfaa83c16ba3 Mon Sep 17 00:00:00 2001 From: Marc Abramowitz Date: Mon, 16 Jun 2025 17:00:06 -0700 Subject: [PATCH] Allow longer duration in test_188_concurrency because I was seeing tests failing on Windows in GitHub Actions and GitHub Copilot [said](https://github.com/modelcontextprotocol/python-sdk/pull/968#issuecomment-2978221567) --- tests/issues/test_188_concurrency.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/issues/test_188_concurrency.py b/tests/issues/test_188_concurrency.py index d0a86885f..9ccffefa9 100644 --- a/tests/issues/test_188_concurrency.py +++ b/tests/issues/test_188_concurrency.py @@ -35,7 +35,7 @@ async def slow_resource(): end_time = anyio.current_time() duration = end_time - start_time - assert duration < 6 * _sleep_time_seconds + assert duration < 10 * _sleep_time_seconds print(duration)