Skip to content

TST: xfail test_rolling_var_numerical_issues on Mac #53661

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 2 commits into from
Jun 20, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions pandas/tests/window/test_rolling.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from pandas.compat import (
IS64,
is_platform_arm,
is_platform_mac,
is_platform_power,
)

Expand Down Expand Up @@ -1189,7 +1188,7 @@ def test_rolling_sem(frame_or_series):


@pytest.mark.xfail(
(is_platform_arm() and not is_platform_mac()) or is_platform_power(),
is_platform_arm() or is_platform_power(),
reason="GH 38921",
)
@pytest.mark.parametrize(
Expand Down