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 248f725 commit 6bcce0cCopy full SHA for 6bcce0c
tests/mock_live_server.py
@@ -619,7 +619,7 @@ def get_message_of_type(
619
try:
620
message = self._message_queue.get(timeout=remaining_time)
621
except queue.Empty:
622
- continue
+ break
623
624
if isinstance(message, message_type):
625
return message
tests/test_live_client.py
@@ -367,6 +367,7 @@ def test_live_subscribe(
367
assert message.start == start
368
369
370
+@pytest.mark.skipif(platform.system() == "Windows", reason="timeout on windows")
371
async def test_live_subscribe_large_symbol_list(
372
live_client: client.Live,
373
mock_live_server: MockLiveServer,
0 commit comments