Commit d18a2002 authored by Rafael Monnerat's avatar Rafael Monnerat

agent: test_mapping should containts all the tests on each groups

 This bug was preventing to get a single test per group (computer) 
 per time. Causing multiple tests run on the same computer and no
 tests run on others. 
parent 94e71102
......@@ -77,6 +77,8 @@ class TestMap(object):
group = test_dict[key].get("group", "default")
if group not in self.test_map_dict:
self.test_map_dict[group] = [key]
else:
self.test_map_dict[group].append(key)
def addRanTest(self, test):
self.ran_test_set.add(test)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment