From 292897073afafdbb23b0995f5831c6aab26b4c47 Mon Sep 17 00:00:00 2001 From: Marc Di Luzio Date: Sat, 10 Aug 2024 16:32:48 +0100 Subject: [PATCH] Ensure we don't bother testing group sizes of 1 --- matching_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matching_test.py b/matching_test.py index 052ba01..d6fe891 100644 --- a/matching_test.py +++ b/matching_test.py @@ -157,7 +157,7 @@ def test_members_to_groups_stress_test(): rand = random.Random(123) # Slowly ramp up the group size - for per_group in range(1, 5): + for per_group in range(2, 6): # Slowly ramp a randomized shuffled list of members for num_members in range(1, 5):