Skip to content

Commit 941549b

Browse files
committed
Pick out fastparquet xfails for green CI
1 parent 799ab49 commit 941549b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/tests/io/test_parquet.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1314,7 +1314,9 @@ def test_empty_dataframe(self, fp):
13141314
expected = df.copy()
13151315
check_round_trip(df, fp, expected=expected)
13161316

1317-
@pytest.mark.skipif(using_copy_on_write(), reason="fastparquet writes into Index")
1317+
@pytest.mark.xfail(
1318+
reason="fastparquet bug, see https://github.com/dask/fastparquet/issues/929"
1319+
)
13181320
def test_timezone_aware_index(self, fp, timezone_aware_date_list):
13191321
idx = 5 * [timezone_aware_date_list]
13201322

0 commit comments

Comments
 (0)