Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement ipc async reader skip test #15005

Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Ignore scan_ipc async test on windows
mickvangelderen committed Mar 12, 2024
commit 0a5ef8862c73c2621211f155c1e21721e173816b
4 changes: 4 additions & 0 deletions py-polars/tests/unit/io/test_lazy_ipc.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from __future__ import annotations

import sys
from typing import TYPE_CHECKING, Any

import pytest
@@ -88,6 +89,9 @@ def test_ipc_list_arg(io_files_path: Path) -> None:
assert df.row(0) == ("vegetables", 45, 0.5, 2)


@pytest.mark.skipif(
sys.platform == "win32", reason="object_store does not handle windows-style paths."
)
def test_scan_ipc_local_with_async(
capfd: Any,
monkeypatch: Any,