Skip to content

Commit 5601c25

Browse files
committed
DEL: Remove Windows platform skips
1 parent cacf498 commit 5601c25

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

tests/test_live_client.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
from __future__ import annotations
55

66
import pathlib
7-
import platform
87
import random
98
import string
109
from 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")
474472
async 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")
799796
async 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")
828824
async 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")
873868
async 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")
918912
async 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")
945938
def test_live_sync_iteration(
946939
live_client: client.Live,
947940
) -> None:

0 commit comments

Comments
 (0)