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 f9ba912 commit aaa94deCopy full SHA for aaa94de
pandas/tests/window/test_online.py
@@ -1,15 +1,24 @@
1
import numpy as np
2
import pytest
3
4
+from pandas.compat import is_platform_arm
5
+
6
from pandas import (
7
DataFrame,
8
Series,
9
)
10
import pandas._testing as tm
11
+from pandas.util.version import Version
12
-pytestmark = pytest.mark.single_cpu
13
+pytestmark = [pytest.mark.single_cpu]
14
-pytest.importorskip("numba")
15
+numba = pytest.importorskip("numba")
16
+pytestmark.append(
17
+ pytest.mark.skipif(
18
+ Version(numba.__version__) == Version("0.61") and is_platform_arm(),
19
+ reason=f"Segfaults on ARM platforms with numba {numba.__version__}",
20
+ )
21
+)
22
23
24
@pytest.mark.filterwarnings("ignore")
0 commit comments