Skip to content

Commit 574708e

Browse files
committed
Add min and max to groupby numba vs cython test
1 parent f40aa16 commit 574708e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/groupby/aggregate/test_numba.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def test_multifunc_numba_vs_cython_frame(agg_kwargs):
186186
tm.assert_frame_equal(result, expected)
187187

188188

189-
@pytest.mark.parametrize("func", ["sum", "mean", "var", "std"])
189+
@pytest.mark.parametrize("func", ["sum", "mean", "var", "std", "min", "max"])
190190
def test_multifunc_numba_vs_cython_frame_noskipna(func):
191191
pytest.importorskip("numba")
192192
data = DataFrame(

0 commit comments

Comments
 (0)