Skip to content

Commit d661599

Browse files
committed
pre commit check. platform check added
1 parent b9b6ba4 commit d661599

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/tests/window/test_rolling.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
timedelta,
44
)
55
import platform
6+
import sys
67

78
import numpy as np
89
import pytest
@@ -1086,7 +1087,8 @@ def test_rolling_sem(frame_or_series):
10861087
is_platform_arm()
10871088
or is_platform_power()
10881089
or is_platform_riscv64()
1089-
or platform.architecture()[0] == "32bit",
1090+
or platform.architecture()[0] == "32bit"
1091+
or sys.platform == "emscripten",
10901092
reason="GH 38921: known numerical instability on 32-bit platforms",
10911093
)
10921094
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)