Skip to content

Commit

Permalink
remove engine="numba" from tests
Browse files Browse the repository at this point in the history
No one uses it...
  • Loading branch information
dcherian committed Jan 7, 2025
1 parent cdb2417 commit 26a8539
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest
from hypothesis import HealthCheck, Verbosity, settings

from . import requires_numba, requires_numbagg
from . import requires_numbagg

settings.register_profile(
"ci",
Expand All @@ -24,7 +24,7 @@
params=[
"flox",
"numpy",
pytest.param("numba", marks=requires_numba),
# pytest.param("numba", marks=requires_numba),
pytest.param("numbagg", marks=requires_numbagg),
],
)
Expand Down

0 comments on commit 26a8539

Please sign in to comment.