Commit ceb1ded4 authored by Rafael Monnerat's avatar Rafael Monnerat

runnertest: Skip to run if test_result is None

  It means there is no extra test to run.
parent e0ee5993
......@@ -609,6 +609,11 @@ def main():
test_result = master.createTestResult(revision, [test_suite_title],
args.test_node_title, True, test_suite_title, args.project_title)
if test_result is None:
# Thereis nothing to run here, all tests are been running by
# some other node.
return
test_line = test_result.start()
start_time = time.time()
......
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