(self, tmp_path)
| 285 | ) |
| 286 | |
| 287 | def test_cleanup_keep(self, tmp_path): |
| 288 | self._do_cleanup(tmp_path) |
| 289 | a, b = (x for x in tmp_path.iterdir() if not x.is_symlink()) |
| 290 | print(a, b) |
| 291 | |
| 292 | def test_cleanup_locked(self, tmp_path): |
| 293 | p = make_numbered_dir(root=tmp_path, prefix=self.PREFIX) |
nothing calls this directly
no test coverage detected