Skip to content

Commit 8ee95e7

Browse files
committed
XFail on pyarrow 0.14
1 parent 3af1433 commit 8ee95e7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pandas/tests/io/test_parquet.py

+6
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,12 @@ def test_cross_engine_pa_fp(df_cross_compat, pa, fp):
238238
def test_cross_engine_fp_pa(df_cross_compat, pa, fp):
239239
# cross-compat with differing reading/writing engines
240240

241+
if pyarrow.__version__.startswith("0.14"):
242+
pytest.xfail(
243+
"Reading fastparquet with pyarrow in 0.14 fails: "
244+
"https://issues.apache.org/jira/browse/ARROW-6492"
245+
)
246+
241247
df = df_cross_compat
242248
with tm.ensure_clean() as path:
243249
df.to_parquet(path, engine=fp, compression=None)

0 commit comments

Comments
 (0)