We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eae3197 commit 917873cCopy full SHA for 917873c
tests/nexus/test_handler.py
@@ -17,6 +17,7 @@
17
import concurrent.futures
18
import logging
19
import pprint
20
+import sys
21
import uuid
22
from concurrent.futures.thread import ThreadPoolExecutor
23
from dataclasses import dataclass
@@ -585,6 +586,11 @@ async def test_start_operation_happy_path(
585
586
async def test_start_operation_protocol_level_failures(
587
test_case: Type[_TestCase], env: WorkflowEnvironment
588
):
589
+ if test_case == UpstreamTimeoutViaRequestTimeout and sys.platform == "win32":
590
+ pytest.skip(
591
+ "TODO(nexus-preview): skipping UpstreamTimeoutViaRequestTimeout test on Windows"
592
+ )
593
+
594
if env.supports_time_skipping:
595
pytest.skip("Nexus tests don't work with time-skipping server")
596
0 commit comments