(self, tmp_path)
| 489 | ) |
| 490 | |
| 491 | def test_cleanup_keep(self, tmp_path): |
| 492 | self._do_cleanup(tmp_path) |
| 493 | a, b = (x for x in tmp_path.iterdir() if not x.is_symlink()) |
| 494 | print(a, b) |
| 495 | |
| 496 | def test_cleanup_keep_0(self, tmp_path: Path): |
| 497 | self._do_cleanup(tmp_path, 0) |
nothing calls this directly
no test coverage detected