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 a0cdf04 commit bac11d4Copy full SHA for bac11d4
pandas/tests/groupby/transform/test_numba.py
@@ -1,6 +1,7 @@
1
import numpy as np
2
import pytest
3
4
+from pandas.compat import is_platform_arm
5
from pandas.errors import NumbaUtilError
6
7
from pandas import (
@@ -9,8 +10,17 @@
9
10
option_context,
11
)
12
import pandas._testing as tm
13
+from pandas.util.version import Version
14
-pytestmark = pytest.mark.single_cpu
15
+pytestmark = [pytest.mark.single_cpu]
16
+
17
+numba = pytest.importorskip("numba")
18
+pytestmark.append(
19
+ pytest.mark.skipif(
20
+ Version(numba.__version__) == Version("0.61") and is_platform_arm(),
21
+ reason=f"Segfaults on ARM platforms with numba {numba.__version__}",
22
+ )
23
+)
24
25
26
def test_correct_function_signature():
0 commit comments