Skip to content

Commit

Permalink
Skip another test
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Feb 4, 2025
1 parent 1409919 commit 7abe783
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pandas/tests/apply/test_numba.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ def test_numba_vs_python_noop(float_frame, apply_axis):

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

0 comments on commit 7abe783

Please sign in to comment.