Skip to content

Commit c18f4f4

Browse files
Backport PR #42237: TST/CI: Reduce number of unnecessary numba tests in groupby ops (#42241)
Co-authored-by: Matthew Roeschke <[email protected]>
1 parent b98be7d commit c18f4f4

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pandas/tests/groupby/conftest.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -137,13 +137,17 @@ def parallel(request):
137137
return request.param
138138

139139

140-
@pytest.fixture(params=[True, False])
140+
# Can parameterize nogil & nopython over True | False, but limiting per
141+
# https://github.com/pandas-dev/pandas/pull/41971#issuecomment-860607472
142+
143+
144+
@pytest.fixture(params=[False])
141145
def nogil(request):
142146
"""nogil keyword argument for numba.jit"""
143147
return request.param
144148

145149

146-
@pytest.fixture(params=[True, False])
150+
@pytest.fixture(params=[True])
147151
def nopython(request):
148152
"""nopython keyword argument for numba.jit"""
149153
return request.param

0 commit comments

Comments
 (0)