From 618f58314fed573273954b1c9325f91df7df6742 Mon Sep 17 00:00:00 2001 From: Daniel Saxton Date: Sat, 9 May 2020 17:22:36 -0500 Subject: [PATCH] TST: Mark groupby.nunique test as slow --- pandas/tests/groupby/test_nunique.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pandas/tests/groupby/test_nunique.py b/pandas/tests/groupby/test_nunique.py index 427a8accf7e7a..952443e0ad23b 100644 --- a/pandas/tests/groupby/test_nunique.py +++ b/pandas/tests/groupby/test_nunique.py @@ -9,6 +9,7 @@ import pandas._testing as tm +@pytest.mark.slow @pytest.mark.parametrize("n", 10 ** np.arange(2, 6)) @pytest.mark.parametrize("m", [10, 100, 1000]) @pytest.mark.parametrize("sort", [False, True])