Lines Matching refs:result
5 from .result import SKIPPED
48 self._reduce_result = lambda result: result
64 the processors know what part of the result can be ignored.
70 # Since we're not winning anything by droping part of the result we are
71 # dropping the whole result or pass it as it is. The real reduction happens
72 # during result creation (in the output processor), so the result is
87 def result_for(self, test, result):
89 Method called by next processor whenever it has result for some test.
129 def _send_result(self, test, result):
130 """Helper method for sending result to the previous processor."""
132 result = self._reduce_result(result)
133 self._prev_proc.result_for(test, result)
145 def result_for(self, test, result):
146 self._on_result_for(test, result)
147 self._send_result(test, result)
158 def _on_result_for(self, test, result):
159 """Method called after receiving result from next processor but before
177 def result_for(self, subtest, result):
178 self._result_for(subtest.origin, subtest, result)
184 def _result_for(self, test, subtest, result):
190 subtest: test for which the `result` is.
191 result: subtest execution result created by the output processor.
211 def result_for(self, test, result):
212 self._send_result(test, result)