Mark the previous check as failed, forcing re-run next time.
(self)
| 630 | ) |
| 631 | |
| 632 | def mark_failure(self) -> None: |
| 633 | """Mark the previous check as failed, forcing re-run next time.""" |
| 634 | _run_zccache( |
| 635 | ["--cache-file", str(self.cache_file), "mark-failure"], |
| 636 | check=True, |
| 637 | ) |
| 638 | |
| 639 | def invalidate(self) -> None: |
| 640 | """Delete the cache file (forces re-run on next check).""" |
nothing calls this directly
no test coverage detected