Skip to content

Commit 9a10b13

Browse files
committed
Skip test on windows 3.13
1 parent eae3197 commit 9a10b13

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

tests/nexus/test_handler.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
import concurrent.futures
1818
import logging
1919
import pprint
20+
import sys
2021
import uuid
2122
from concurrent.futures.thread import ThreadPoolExecutor
2223
from dataclasses import dataclass
@@ -585,6 +586,15 @@ async def test_start_operation_happy_path(
585586
async def test_start_operation_protocol_level_failures(
586587
test_case: Type[_TestCase], env: WorkflowEnvironment
587588
):
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+
588598
if env.supports_time_skipping:
589599
pytest.skip("Nexus tests don't work with time-skipping server")
590600

0 commit comments

Comments
 (0)