From fea2101284f493b5c0b4c7cc376d7d4ee654eeee Mon Sep 17 00:00:00 2001 From: Dmitry Chigarev Date: Mon, 22 Jan 2024 19:53:44 +0100 Subject: [PATCH] add a link to the bug Signed-off-by: Dmitry Chigarev --- modin/pandas/test/test_groupby.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modin/pandas/test/test_groupby.py b/modin/pandas/test/test_groupby.py index b3fe2ec9cbf..3e5e069201b 100644 --- a/modin/pandas/test/test_groupby.py +++ b/modin/pandas/test/test_groupby.py @@ -3210,7 +3210,9 @@ def _apply_transform(df): def test_range_groupby_categories( observed, func, by_cols, cat_cols, exclude_values, as_index, modify_config ): - # HACK: there's a bug + # HACK: there's a bug in range-partitioning impl that can be triggered + # here on certain seeds, manually setting the seed so it won't show up + # https://github.com/modin-project/modin/issues/6875 np.random.seed(0) data = { "a": ["a", "b", "c", "d", "e", "b", "g", "a"] * 32,