diff --git a/pandas/tests/io/test_parquet.py b/pandas/tests/io/test_parquet.py index d750595e83db4d..10dee6649632c2 100644 --- a/pandas/tests/io/test_parquet.py +++ b/pandas/tests/io/test_parquet.py @@ -1314,6 +1314,9 @@ def test_empty_dataframe(self, fp): expected = df.copy() check_round_trip(df, fp, expected=expected) + @pytest.mark.xfail( + reason="fastparquet bug, see https://github.com/dask/fastparquet/issues/929" + ) @pytest.mark.skipif(using_copy_on_write(), reason="fastparquet writes into Index") def test_timezone_aware_index(self, fp, timezone_aware_date_list): idx = 5 * [timezone_aware_date_list]