Commit 45319594 authored by Bryton Lacquement's avatar Bryton Lacquement 🚪

wip

parent ad8dfd89
...@@ -345,8 +345,8 @@ def main(): ...@@ -345,8 +345,8 @@ def main():
# Select an unused computer to run the test. # Select an unused computer to run the test.
group = test_mapping.getNextGroup( group = test_mapping.getNextGroup(
ignore_list = [group for _, _, group in \ ignore_list = [group for _, _, group in
running_test_dict.itervalues()]) six.itervalues(running_test_dict)])
# Select a test # Select a test
test_line = test_result.start( test_line = test_result.start(
...@@ -455,7 +455,7 @@ def main(): ...@@ -455,7 +455,7 @@ def main():
logger.info('Sleeping %is...', to_sleep) logger.info('Sleeping %is...', to_sleep)
time.sleep(to_sleep) time.sleep(to_sleep)
if not test_result.isAlive(): if not test_result.isAlive():
for _, tester, computer_id in running_test_dict.itervalues(): for _, tester, computer_id in six.itervalues(running_test_dict):
tester.teardown() tester.teardown()
time.sleep(300) time.sleep(300)
......
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