(self)
| 176 | return State.has_meaningful_duration(self.state) |
| 177 | |
| 178 | def set_env_changed(self): |
| 179 | if self.state is None or self.state == State.PASSED: |
| 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): |
no outgoing calls
no test coverage detected