Skip to content

Commit

Permalink
DEL: Remove Windows platform skips
Browse files Browse the repository at this point in the history
  • Loading branch information
nmacholl committed Feb 7, 2024
1 parent cacf498 commit 5601c25
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions tests/test_live_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from __future__ import annotations

import pathlib
import platform
import random
import string
from io import BytesIO
Expand Down Expand Up @@ -470,7 +469,6 @@ async def test_live_subscribe_session_id(
assert live_client._session.session_id != 0


@pytest.mark.skipif(platform.system() == "Windows", reason="timeout on windows")
async def test_live_subscribe_large_symbol_list(
live_client: client.Live,
mock_live_server: MockLiveServer,
Expand Down Expand Up @@ -795,7 +793,6 @@ def test_live_add_stream_path_directory(
live_client.add_stream(tmp_path)


@pytest.mark.skipif(platform.system() == "Windows", reason="flaky on windows runner")
async def test_live_async_iteration(
live_client: client.Live,
) -> None:
Expand Down Expand Up @@ -824,7 +821,6 @@ async def test_live_async_iteration(
assert isinstance(records[3], databento_dbn.MBOMsg)


@pytest.mark.skipif(platform.system() == "Windows", reason="flaky on windows runner")
async def test_live_async_iteration_backpressure(
monkeypatch: pytest.MonkeyPatch,
mock_live_server: MockLiveServer,
Expand Down Expand Up @@ -869,7 +865,6 @@ async def test_live_async_iteration_backpressure(
assert live_client._dbn_queue.empty()


@pytest.mark.skipif(platform.system() == "Windows", reason="flaky on windows runner")
async def test_live_async_iteration_dropped(
monkeypatch: pytest.MonkeyPatch,
mock_live_server: MockLiveServer,
Expand Down Expand Up @@ -914,7 +909,6 @@ async def test_live_async_iteration_dropped(
assert live_client._dbn_queue.empty()


@pytest.mark.skipif(platform.system() == "Windows", reason="flaky on windows runner")
async def test_live_async_iteration_stop(
live_client: client.Live,
) -> None:
Expand All @@ -941,7 +935,6 @@ async def test_live_async_iteration_stop(
assert live_client._dbn_queue.empty()


@pytest.mark.skipif(platform.system() == "Windows", reason="flaky on windows runner")
def test_live_sync_iteration(
live_client: client.Live,
) -> None:
Expand Down

0 comments on commit 5601c25

Please sign in to comment.