Skip to content

Commit

Permalink
Skip test_info_compute_numba
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Feb 5, 2025
1 parent acb7daf commit 59869f2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pandas/tests/frame/methods/test_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
HAS_PYARROW,
IS64,
PYPY,
is_platform_arm,
)

from pandas import (
Expand All @@ -23,6 +24,7 @@
option_context,
)
import pandas._testing as tm
from pandas.util.version import Version


@pytest.fixture
Expand Down Expand Up @@ -544,7 +546,9 @@ def test_memory_usage_empty_no_warning(using_infer_string):
@pytest.mark.single_cpu
def test_info_compute_numba():
# GH#51922
pytest.importorskip("numba")
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, 2], [3, 4]])

with option_context("compute.use_numba", True):
Expand Down

0 comments on commit 59869f2

Please sign in to comment.