Skip to content

Commit 7abe783

Browse files
committed
Skip another test
1 parent 1409919 commit 7abe783

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pandas/tests/apply/test_numba.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ def test_numba_vs_python_noop(float_frame, apply_axis):
3232

3333
def test_numba_vs_python_string_index():
3434
# GH#56189
35+
numba = pytest.importorskip("numba")
36+
if Version(numba.__version__) == Version("0.61") and is_platform_arm():
37+
pytest.skip(f"Segfaults on ARM platforms with numba {numba.__version__}")
3538
df = DataFrame(
3639
1,
3740
index=Index(["a", "b"], dtype=pd.StringDtype(na_value=np.nan)),

0 commit comments

Comments
 (0)