44from __future__ import annotations
55
66import pathlib
7- import platform
87import random
98import string
109from io import BytesIO
@@ -470,7 +469,6 @@ async def test_live_subscribe_session_id(
470469 assert live_client ._session .session_id != 0
471470
472471
473- @pytest .mark .skipif (platform .system () == "Windows" , reason = "timeout on windows" )
474472async def test_live_subscribe_large_symbol_list (
475473 live_client : client .Live ,
476474 mock_live_server : MockLiveServer ,
@@ -795,7 +793,6 @@ def test_live_add_stream_path_directory(
795793 live_client .add_stream (tmp_path )
796794
797795
798- @pytest .mark .skipif (platform .system () == "Windows" , reason = "flaky on windows runner" )
799796async def test_live_async_iteration (
800797 live_client : client .Live ,
801798) -> None :
@@ -824,7 +821,6 @@ async def test_live_async_iteration(
824821 assert isinstance (records [3 ], databento_dbn .MBOMsg )
825822
826823
827- @pytest .mark .skipif (platform .system () == "Windows" , reason = "flaky on windows runner" )
828824async def test_live_async_iteration_backpressure (
829825 monkeypatch : pytest .MonkeyPatch ,
830826 mock_live_server : MockLiveServer ,
@@ -869,7 +865,6 @@ async def test_live_async_iteration_backpressure(
869865 assert live_client ._dbn_queue .empty ()
870866
871867
872- @pytest .mark .skipif (platform .system () == "Windows" , reason = "flaky on windows runner" )
873868async def test_live_async_iteration_dropped (
874869 monkeypatch : pytest .MonkeyPatch ,
875870 mock_live_server : MockLiveServer ,
@@ -914,7 +909,6 @@ async def test_live_async_iteration_dropped(
914909 assert live_client ._dbn_queue .empty ()
915910
916911
917- @pytest .mark .skipif (platform .system () == "Windows" , reason = "flaky on windows runner" )
918912async def test_live_async_iteration_stop (
919913 live_client : client .Live ,
920914) -> None :
@@ -941,7 +935,6 @@ async def test_live_async_iteration_stop(
941935 assert live_client ._dbn_queue .empty ()
942936
943937
944- @pytest .mark .skipif (platform .system () == "Windows" , reason = "flaky on windows runner" )
945938def test_live_sync_iteration (
946939 live_client : client .Live ,
947940) -> None :
0 commit comments