Skip to content

TST: xfail test_arrowparquet_options for windows #45354

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

Merged
Merged
Changes from all commits
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
5 changes: 5 additions & 0 deletions pandas/tests/io/test_fsspec.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import io
import sys

import numpy as np
import pytest

from pandas.compat import is_platform_windows
from pandas.compat._optional import VERSIONS

from pandas import (
Expand Down Expand Up @@ -161,6 +163,9 @@ def test_to_parquet_new_file(monkeypatch, cleared_fs):


@td.skip_if_no("pyarrow")
@pytest.mark.xfail(
is_platform_windows() and sys.version_info[:2] == (3, 8), reason="GH 45344"
)
def test_arrowparquet_options(fsspectest):
"""Regression test for writing to a not-yet-existent GCS Parquet file."""
df = DataFrame({"a": [0]})
Expand Down