Skip to content

Commit 917873c

Browse files
committed
Skip test on windows
1 parent eae3197 commit 917873c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/nexus/test_handler.py

Lines changed: 6 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,11 @@ 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 test_case == UpstreamTimeoutViaRequestTimeout and sys.platform == "win32":
590+
pytest.skip(
591+
"TODO(nexus-preview): skipping UpstreamTimeoutViaRequestTimeout test on Windows"
592+
)
593+
588594
if env.supports_time_skipping:
589595
pytest.skip("Nexus tests don't work with time-skipping server")
590596

0 commit comments

Comments
 (0)