Result of build artifact cleanup operation.
| 11 | |
| 12 | @dataclass |
| 13 | class CleanupResult: |
| 14 | """Result of build artifact cleanup operation.""" |
| 15 | |
| 16 | deleted: int |
| 17 | failed: int |
| 18 | failed_files: list[str] |
| 19 | |
| 20 | |
| 21 | def cleanup_build_artifacts(build_dir: Path, reason: str) -> dict[str, CleanupResult]: |
no outgoing calls
no test coverage detected