(self, tmp_path: Path, keep: int = 2)
| 480 | assert not lock.exists() |
| 481 | |
| 482 | def _do_cleanup(self, tmp_path: Path, keep: int = 2) -> None: |
| 483 | self.test_make(tmp_path) |
| 484 | cleanup_numbered_dir( |
| 485 | root=tmp_path, |
| 486 | prefix=self.PREFIX, |
| 487 | keep=keep, |
| 488 | consider_lock_dead_if_created_before=0, |
| 489 | ) |
| 490 | |
| 491 | def test_cleanup_keep(self, tmp_path): |
| 492 | self._do_cleanup(tmp_path) |
no test coverage detected