From 14624deab081c28f7bb42e917fc8bf9714ed94ff Mon Sep 17 00:00:00 2001 From: jbrockmendel Date: Wed, 29 Jan 2020 17:13:44 -0800 Subject: [PATCH] TST: make sure fixture params are sorted list --- pandas/tests/groupby/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/tests/groupby/conftest.py b/pandas/tests/groupby/conftest.py index 8901af7a90acc..ebac36c5f8c78 100644 --- a/pandas/tests/groupby/conftest.py +++ b/pandas/tests/groupby/conftest.py @@ -112,7 +112,7 @@ def reduction_func(request): return request.param -@pytest.fixture(params=transformation_kernels) +@pytest.fixture(params=sorted(transformation_kernels)) def transformation_func(request): """yields the string names of all groupby transformation functions.""" return request.param