Skip to content

Commit 122e3a1

Browse files
authored
TST: xfail test_rolling_var_numerical_issues on Mac (#53661)
modified xfail test_rolling_var_numerical_issues removed exclusion of mac from xfail
1 parent 155af2c commit 122e3a1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pandas/tests/window/test_rolling.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
from pandas.compat import (
1010
IS64,
1111
is_platform_arm,
12-
is_platform_mac,
1312
is_platform_power,
1413
)
1514

@@ -1189,7 +1188,7 @@ def test_rolling_sem(frame_or_series):
11891188

11901189

11911190
@pytest.mark.xfail(
1192-
(is_platform_arm() and not is_platform_mac()) or is_platform_power(),
1191+
is_platform_arm() or is_platform_power(),
11931192
reason="GH 38921",
11941193
)
11951194
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)