Skip to content

Commit e16a21b

Browse files
removed numba test (needs change it pytest setup for the repo)
1 parent 63730ef commit e16a21b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pandas/tests/window/test_minmax.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ def cache(self) -> Cache:
8484
return self.Cache()
8585

8686
@pytest.mark.parametrize("is_max", [True, False])
87-
@pytest.mark.parametrize("engine", ["python", "cython", "numba"])
87+
# @pytest.mark.parametrize("engine", ["python", "cython", "numba"])
88+
@pytest.mark.parametrize("engine", ["python", "cython"])
8889
@pytest.mark.parametrize(
8990
"seed, n, win_len, min_obs, frac_nan, indexer_t",
9091
[
@@ -140,7 +141,8 @@ def test_minmax(
140141
test = f(engine=engine)
141142
tm.assert_series_equal(test.Data, ctrl.Data)
142143

143-
@pytest.mark.parametrize("engine", ["python", "cython", "numba"])
144+
# @pytest.mark.parametrize("engine", ["python", "cython", "numba"])
145+
@pytest.mark.parametrize("engine", ["python", "cython"])
144146
@pytest.mark.parametrize(
145147
"seed, n, win_len, indexer_t",
146148
[

0 commit comments

Comments
 (0)