(self, fail_env_changed: bool)
| 101 | covered_lines: list[Location] | None = None |
| 102 | |
| 103 | def is_failed(self, fail_env_changed: bool) -> bool: |
| 104 | if self.state == State.ENV_CHANGED: |
| 105 | return fail_env_changed |
| 106 | return State.is_failed(self.state) |
| 107 | |
| 108 | def _format_failed(self): |
| 109 | ansi = get_colors() |