Skip to content

Commit f87b7b6

Browse files
committed
merge with recent branch
1 parent ff9d079 commit f87b7b6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tests/issues/test_88_random_error.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ async def client(read_stream, write_stream, scope):
9090
# Increased to 150ms to avoid flakiness on slower platforms
9191
read_timeout_seconds=timedelta(milliseconds=150),
9292
) as session:
93-
# async with ClientSession(read_stream, write_stream, read_timeout_seconds=timedelta(milliseconds=50)) as session:
9493
await session.initialize()
9594

9695
# First call should work (fast operation)

tests/shared/test_streamable_http.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import json
88
import multiprocessing
99
import socket
10+
import sys
1011
import time
1112
from collections.abc import Generator
1213
from typing import Any
@@ -1047,6 +1048,7 @@ async def mock_delete(self, *args, **kwargs):
10471048

10481049

10491050
@pytest.mark.anyio
1051+
@pytest.mark.skipif(sys.platform == "win32", reason="Resumption unstable on Windows")
10501052
async def test_streamablehttp_client_resumption(event_server):
10511053
"""Test client session to resume a long running tool."""
10521054
_, server_url = event_server

0 commit comments

Comments
 (0)