From 556306434e81745d91182fe8d9f69889e16051db Mon Sep 17 00:00:00 2001 From: Will Ayd Date: Thu, 22 Aug 2024 10:11:18 -0400 Subject: [PATCH] Pick required fix from #55901 and #59581 --- pandas/tests/io/test_parquet.py | 3 +++ 1 file changed, 3 insertions(+) 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]