We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 799ab49 commit 941549bCopy full SHA for 941549b
pandas/tests/io/test_parquet.py
@@ -1314,7 +1314,9 @@ def test_empty_dataframe(self, fp):
1314
expected = df.copy()
1315
check_round_trip(df, fp, expected=expected)
1316
1317
- @pytest.mark.skipif(using_copy_on_write(), reason="fastparquet writes into Index")
+ @pytest.mark.xfail(
1318
+ reason="fastparquet bug, see https://github.com/dask/fastparquet/issues/929"
1319
+ )
1320
def test_timezone_aware_index(self, fp, timezone_aware_date_list):
1321
idx = 5 * [timezone_aware_date_list]
1322
0 commit comments