Mark the previous check as failed, forcing re-run next time.
(self)
| 490 | ) |
| 491 | |
| 492 | def mark_failure(self) -> None: |
| 493 | """Mark the previous check as failed, forcing re-run next time.""" |
| 494 | _run_zccache( |
| 495 | ["--cache-file", str(self.cache_file), "mark-failure"], |
| 496 | check=True, |
| 497 | ) |
| 498 | |
| 499 | def invalidate(self) -> None: |
| 500 | """ |
nothing calls this directly
no test coverage detected