(self, tmp_path: Path)
| 276 | assert not lock.exists() |
| 277 | |
| 278 | def _do_cleanup(self, tmp_path: Path) -> None: |
| 279 | self.test_make(tmp_path) |
| 280 | cleanup_numbered_dir( |
| 281 | root=tmp_path, |
| 282 | prefix=self.PREFIX, |
| 283 | keep=2, |
| 284 | consider_lock_dead_if_created_before=0, |
| 285 | ) |
| 286 | |
| 287 | def test_cleanup_keep(self, tmp_path): |
| 288 | self._do_cleanup(tmp_path) |
no test coverage detected