Skip to content

Commit 88310ba

Browse files
committed
Pick required fix from pandas-dev#55901 and pandas-dev#59581
1 parent 8dc27bc commit 88310ba

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pandas/tests/io/test_parquet.py

+3
Original file line numberDiff line numberDiff line change
@@ -1318,6 +1318,9 @@ def test_empty_dataframe(self, fp):
13181318
expected = df.copy()
13191319
check_round_trip(df, fp, expected=expected)
13201320

1321+
@pytest.mark.xfail(
1322+
reason="fastparquet bug, see https://github.com/dask/fastparquet/issues/929"
1323+
)
13211324
@pytest.mark.skipif(using_copy_on_write(), reason="fastparquet writes into Index")
13221325
def test_timezone_aware_index(self, fp, timezone_aware_date_list):
13231326
idx = 5 * [timezone_aware_date_list]

0 commit comments

Comments
 (0)