From 553cfc81f4bdae7749fe7804bb72d8fb1677ad7e Mon Sep 17 00:00:00 2001 From: Matthew Roeschke Date: Tue, 15 Jun 2021 12:19:39 -0700 Subject: [PATCH] TST: Reduce number of numba tests run --- pandas/tests/window/conftest.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pandas/tests/window/conftest.py b/pandas/tests/window/conftest.py index 24b28356a3099..5382f5f9202c0 100644 --- a/pandas/tests/window/conftest.py +++ b/pandas/tests/window/conftest.py @@ -90,13 +90,17 @@ def parallel(request): return request.param -@pytest.fixture(params=[True, False]) +# Can parameterize nogil & nopython over True | False, but limiting per +# https://github.com/pandas-dev/pandas/pull/41971#issuecomment-860607472 + + +@pytest.fixture(params=[False]) def nogil(request): """nogil keyword argument for numba.jit""" return request.param -@pytest.fixture(params=[True, False]) +@pytest.fixture(params=[True]) def nopython(request): """nopython keyword argument for numba.jit""" return request.param