File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 55from __future__ import annotations
66
77import pathlib
8+ import platform
89import random
910import string
1011from io import BytesIO
3233from tests .mockliveserver .fixture import MockLiveServerInterface
3334
3435
36+ # TODO(nm): Remove when stable
37+ if platform .system () == "Windows" :
38+ pytest .skip (reason = "Skip on Windows due to flakiness" , allow_module_level = True )
39+
40+
3541def test_live_connection_refused (
3642 test_api_key : str ,
3743) -> None :
Original file line number Diff line number Diff line change 11from __future__ import annotations
22
33import asyncio
4+ import platform
45from unittest .mock import MagicMock
56
67import pandas as pd
1819from tests .mockliveserver .fixture import MockLiveServerInterface
1920
2021
22+ # TODO(nm): Remove when stable
23+ if platform .system () == "Windows" :
24+ pytest .skip (reason = "Skip on Windows due to flakiness" , allow_module_level = True )
25+
26+
2127async def test_reconnect_policy_none (
2228 test_live_api_key : str ,
2329 mock_live_server : MockLiveServerInterface ,
Original file line number Diff line number Diff line change 11import asyncio
2+ import platform
23from unittest .mock import MagicMock
34
45import pytest
1011from tests .mockliveserver .fixture import MockLiveServerInterface
1112
1213
14+ # TODO(nm): Remove when stable
15+ if platform .system () == "Windows" :
16+ pytest .skip (reason = "Skip on Windows due to flakiness" , allow_module_level = True )
17+
18+
1319@pytest .mark .parametrize (
1420 "dataset" ,
1521 [
You can’t perform that action at this time.
0 commit comments