We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b2f4a5 commit e53bda9Copy full SHA for e53bda9
pandas/tests/io/test_fsspec.py
@@ -1,8 +1,10 @@
1
import io
2
+import sys
3
4
import numpy as np
5
import pytest
6
7
+from pandas.compat import is_platform_windows
8
from pandas.compat._optional import VERSIONS
9
10
from pandas import (
@@ -161,6 +163,9 @@ def test_to_parquet_new_file(monkeypatch, cleared_fs):
161
163
162
164
165
@td.skip_if_no("pyarrow")
166
+@pytest.mark.xfail(
167
+ is_platform_windows() and sys.version_info[:2] == (3, 8), reason="GH 45344"
168
+)
169
def test_arrowparquet_options(fsspectest):
170
"""Regression test for writing to a not-yet-existent GCS Parquet file."""
171
df = DataFrame({"a": [0]})
0 commit comments