We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b98be7d commit c18f4f4Copy full SHA for c18f4f4
pandas/tests/groupby/conftest.py
@@ -137,13 +137,17 @@ def parallel(request):
137
return request.param
138
139
140
-@pytest.fixture(params=[True, False])
+# 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])
145
def nogil(request):
146
"""nogil keyword argument for numba.jit"""
147
148
149
150
+@pytest.fixture(params=[True])
151
def nopython(request):
152
"""nopython keyword argument for numba.jit"""
153
0 commit comments