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