Changed main integration test to wait for both jobs to be completed before shutting down.

This commit is contained in:
Andrew Hamilton 2016-01-28 00:33:17 +00:00
parent 1f7fb7f6e4
commit 678dc89cc9
3 changed files with 12 additions and 3 deletions

4
vigil
View file

@ -850,8 +850,8 @@ class Runner:
summary.completed_total += 1
if summary.result_total == summary.completed_total:
log.log_message("All results are up to date.")
if self.is_being_tested and self.result.tool == tools.metadata:
os.kill(os.getpid(), signal.SIGINT)
if self.is_being_tested:
os.kill(os.getpid(), signal.SIGINT)
jobs_added_event.clear()
def pause(self):