From 91225eae0f18036ee26dc226cb06256ad16c3009 Mon Sep 17 00:00:00 2001 From: Thomas Li <47963215+lithomas1@users.noreply.github.com> Date: Thu, 12 Sep 2024 15:55:56 -0400 Subject: [PATCH] Pick out fastparquet xfails for green CI --- 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 8771793672263..0f2b4d086cd46 100644 --- a/pandas/tests/io/test_parquet.py +++ b/pandas/tests/io/test_parquet.py @@ -973,6 +973,9 @@ def test_timestamp_nanoseconds(self, pa): df = pd.DataFrame({"a": pd.date_range("2017-01-01", freq="1ns", periods=10)}) check_round_trip(df, pa, write_kwargs={"version": ver}) + @pytest.mark.xfail( + reason="fastparquet bug, see https://github.com/dask/fastparquet/issues/929" + ) def test_timezone_aware_index(self, request, pa, timezone_aware_date_list): if timezone_aware_date_list.tzinfo != datetime.timezone.utc: request.applymarker(