Skip to content

Commit

Permalink
TST: xfail test_arrowparquet_options for windows (#45354)
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke authored Jan 14, 2022
1 parent 5b2f4a5 commit e53bda9
Showing 1 changed file with 5 additions and 0 deletions.
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

0 comments on commit e53bda9

Please sign in to comment.