File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 17
17
import concurrent .futures
18
18
import logging
19
19
import pprint
20
+ import sys
20
21
import uuid
21
22
from concurrent .futures .thread import ThreadPoolExecutor
22
23
from dataclasses import dataclass
@@ -585,6 +586,15 @@ async def test_start_operation_happy_path(
585
586
async def test_start_operation_protocol_level_failures (
586
587
test_case : Type [_TestCase ], env : WorkflowEnvironment
587
588
):
589
+ if (
590
+ test_case == UpstreamTimeoutViaRequestTimeout
591
+ and sys .platform == "win32"
592
+ and sys .version_info >= (3 , 13 )
593
+ ):
594
+ pytest .skip (
595
+ "TODO(nexus-preview): skipping UpstreamTimeoutViaRequestTimeout test on Windows 3.13"
596
+ )
597
+
588
598
if env .supports_time_skipping :
589
599
pytest .skip ("Nexus tests don't work with time-skipping server" )
590
600
You can’t perform that action at this time.
0 commit comments