Skip to content

Commit 89066cd

Browse files
mroeschkemeeseeksmachine
authored andcommitted
Backport PR pandas-dev#42024: TST: Reduce number of numba tests run
1 parent 1b07fde commit 89066cd

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pandas/tests/window/conftest.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,17 @@ def parallel(request):
9090
return request.param
9191

9292

93-
@pytest.fixture(params=[True, False])
93+
# 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])
9498
def nogil(request):
9599
"""nogil keyword argument for numba.jit"""
96100
return request.param
97101

98102

99-
@pytest.fixture(params=[True, False])
103+
@pytest.fixture(params=[True])
100104
def nopython(request):
101105
"""nopython keyword argument for numba.jit"""
102106
return request.param

0 commit comments

Comments
 (0)