(self, requirement=None)
| 40 | 'ExecutionProc cannot be connected to anything' # pragma: no cover |
| 41 | |
| 42 | def run(self, requirement=None): |
| 43 | for pool_result in self.ctx.pool.results(requirement): |
| 44 | self._unpack_result(pool_result) |
| 45 | |
| 46 | def next_test(self, test): |
| 47 | if self.is_stopped: |
no test coverage detected