We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31e4730 commit b9b6ba4Copy full SHA for b9b6ba4
pandas/tests/window/test_rolling.py
@@ -2,6 +2,7 @@
2
datetime,
3
timedelta,
4
)
5
+import platform
6
7
import numpy as np
8
import pytest
@@ -1082,8 +1083,11 @@ def test_rolling_sem(frame_or_series):
1082
1083
1084
1085
@pytest.mark.xfail(
- is_platform_arm() or is_platform_power() or is_platform_riscv64(),
1086
- reason="GH 38921",
+ is_platform_arm()
1087
+ or is_platform_power()
1088
+ or is_platform_riscv64()
1089
+ or platform.architecture()[0] == "32bit",
1090
+ reason="GH 38921: known numerical instability on 32-bit platforms",
1091
1092
@pytest.mark.parametrize(
1093
("func", "third_value", "values"),
0 commit comments