We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b07fde commit 89066cdCopy full SHA for 89066cd
pandas/tests/window/conftest.py
@@ -90,13 +90,17 @@ def parallel(request):
90
return request.param
91
92
93
-@pytest.fixture(params=[True, False])
+# Can parameterize nogil & nopython over True | False, but limiting per
94
+# https://github.com/pandas-dev/pandas/pull/41971#issuecomment-860607472
95
+
96
97
+@pytest.fixture(params=[False])
98
def nogil(request):
99
"""nogil keyword argument for numba.jit"""
100
101
102
103
+@pytest.fixture(params=[True])
104
def nopython(request):
105
"""nopython keyword argument for numba.jit"""
106
0 commit comments