Skip to content

Commit 6bcce0c

Browse files
committed
FIX: Skip test for Windows runner
1 parent 248f725 commit 6bcce0c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tests/mock_live_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ def get_message_of_type(
619619
try:
620620
message = self._message_queue.get(timeout=remaining_time)
621621
except queue.Empty:
622-
continue
622+
break
623623

624624
if isinstance(message, message_type):
625625
return message

tests/test_live_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ def test_live_subscribe(
367367
assert message.start == start
368368

369369

370+
@pytest.mark.skipif(platform.system() == "Windows", reason="timeout on windows")
370371
async def test_live_subscribe_large_symbol_list(
371372
live_client: client.Live,
372373
mock_live_server: MockLiveServer,

0 commit comments

Comments
 (0)