Skip to content

Commit

Permalink
Pick required fix from pandas-dev#55901 and pandas-dev#59581
Browse files Browse the repository at this point in the history
  • Loading branch information
WillAyd committed Aug 22, 2024
1 parent def32f5 commit d38a2be
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pandas/tests/io/test_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit d38a2be

Please sign in to comment.