def process(self, completions): # type: (List[TestCompletion]) -> None if completions: self.log.info("process: completions={0}".format(orchestrator.pretty_print(completions))) for p in completions: p.evaluate()
def process(self, completions): """ Does nothing, as completions are processed in another thread. """ if completions: self.log.info("process: completions={0}".format(orchestrator.pretty_print(completions))) for p in completions: p.finalize()
def process(self, completions): """Given a list of Completion instances, progress any which are incomplete. :param completions: list of Completion instances :Returns : True if everything is done. """ if completions: self.log.info("process: completions={0}".format( orchestrator.pretty_print(completions)))