8000 Assorted backports for 2.2.x by lithomas1 · Pull Request #59785 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

Assorted backports for 2.2.x #59785

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Prev Previous commit
Next Next commit
Pick out fastparquet xfails for green CI
  • Loading branch information
lithomas1 committed Sep 13, 2024
commit 941549b236706e2ff25ad16f654aa4b69d6c2a6d
4 changes: 3 additions & 1 deletion pandas/tests/io/test_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -1314,7 +1314,9 @@ def test_empty_dataframe(self, fp):
expected = df.copy()
check_round_trip(df, fp, expected=expected)

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

Expand Down
0