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 8a1791e commit b91a48cCopy full SHA for b91a48c
pandas/tests/io/test_fsspec.py
@@ -5,6 +5,8 @@
5
6
from pandas._config import using_string_dtype
7
8
+from pandas.compat import HAS_PYARROW
9
+
10
from pandas import (
11
DataFrame,
12
date_range,
@@ -176,6 +178,9 @@ def test_excel_options(fsspectest):
176
178
assert fsspectest.test[0] == "read"
177
179
180
181
+@pytest.mark.xfail(
182
+ using_string_dtype() and HAS_PYARROW, reason="TODO(infer_string) fastparquet"
183
+)
184
def test_to_parquet_new_file(cleared_fs, df1):
185
"""Regression test for writing to a not-yet-existent GCS Parquet file."""
186
pytest.importorskip("fastparquet")
0 commit comments