(src: Path, dst: Path)
| 196 | shutil.copytree(src, dst, symlinks=symlinks, ignore=ignore) |
| 197 | |
| 198 | def _safe_copy(src: Path, dst: Path): |
| 199 | dst.parent.mkdir(parents=True, exist_ok=True) |
| 200 | shutil.copy2(src, dst) |
| 201 | |
| 202 | def _cleanup_old_runs(max_age_hours=12): |
| 203 | try: |
no outgoing calls
no test coverage detected