Skip to content

Commit b91a48c

Browse files
committed
Skip for pyarrow string build
1 parent 8a1791e commit b91a48c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pandas/tests/io/test_fsspec.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
from pandas._config import using_string_dtype
77

8+
from pandas.compat import HAS_PYARROW
9+
810
from pandas import (
911
DataFrame,
1012
date_range,
@@ -176,6 +178,9 @@ def test_excel_options(fsspectest):
176178
assert fsspectest.test[0] == "read"
177179

178180

181+
@pytest.mark.xfail(
182+
using_string_dtype() and HAS_PYARROW, reason="TODO(infer_string) fastparquet"
183+
)
179184
def test_to_parquet_new_file(cleared_fs, df1):
180185
"""Regression test for writing to a not-yet-existent GCS Parquet file."""
181186
pytest.importorskip("fastparquet")

0 commit comments

Comments
 (0)