(self)
| 137 | ] |
| 138 | |
| 139 | def get_errors(self) -> list[Exception]: |
| 140 | return self._get_setup_teardown_errors() + self._get_inner_errors() |
| 141 | |
| 142 | def add_stats(self, statistics: Statistics) -> None: |
| 143 | for inner_result in self._inner_results: |
no test coverage detected