From 47bcb5156cbb3203c1b7c7849aab24b8d0509601 Mon Sep 17 00:00:00 2001 From: Matthew Harrigan Date: Sun, 30 May 2021 03:25:21 -0700 Subject: [PATCH] testing groups bug --- shepherd/testing_script.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shepherd/testing_script.py b/shepherd/testing_script.py index 477e47ae..05a51851 100644 --- a/shepherd/testing_script.py +++ b/shepherd/testing_script.py @@ -108,7 +108,7 @@ def start(): for test in sys.argv[1:]: # check if the specified test was a test group if test in list(test_groups.keys()): - for t in test_groups: + for t in test_groups[test]: #no duplicates if not t in queued_tests: queued_tests += [t]