Method
must_stop
(self, fail_fast: bool, fail_env_changed: bool)
Source from the content-addressed store, hash-verified
| 180 | self.state = State.ENV_CHANGED |
| 181 | |
| 182 | def must_stop(self, fail_fast: bool, fail_env_changed: bool) -> bool: |
| 183 | if State.must_stop(self.state): |
| 184 | return True |
| 185 | if fail_fast and self.is_failed(fail_env_changed): |
| 186 | return True |
| 187 | return False |
| 188 | |
| 189 | def get_rerun_match_tests(self) -> FilterTuple | None: |
| 190 | match_tests = [] |
Callers
nothing calls this directly
Tested by
no test coverage detected