From cea6e935e96315eba59ccc17b22feeebba4d2c8a Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Tue, 3 Mar 2026 16:43:42 -0500 Subject: [PATCH] Increase uv transport test timeout to 60s for cold-start CI --- tests/client/transports/test_uv_transport.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/client/transports/test_uv_transport.py b/tests/client/transports/test_uv_transport.py index 2917045b8..8c2a500fd 100644 --- a/tests/client/transports/test_uv_transport.py +++ b/tests/client/transports/test_uv_transport.py @@ -17,7 +17,7 @@ _fastmcp_src_dir = ( ) -@pytest.mark.timeout(10) +@pytest.mark.timeout(60) @pytest.mark.client_process @pytest.mark.skipif( sys.platform == "win32", @@ -54,7 +54,7 @@ async def test_uv_transport(): assert sum == 3 -@pytest.mark.timeout(10) +@pytest.mark.timeout(60) @pytest.mark.client_process @pytest.mark.skipif( sys.platform == "win32",