Lines Matching refs:result
8 from .result import RerunResult
24 def _result_for(self, test, subtest, result):
25 # First result
28 if not result.has_unexpected_output:
29 self._send_result(test, result)
35 results.append(result)
37 if not self.is_stopped and self._needs_rerun(test, result):
43 result = RerunResult.create(results)
45 self._send_result(test, result)
47 def _needs_rerun(self, test, result):
51 result.has_unexpected_output)