(path: Path, data: dict)
| 522 | |
| 523 | |
| 524 | def _run_commands(*, commands: list[str], run_dir: Path, log_file: Path, progress_file: Path) -> tuple[int, int | None]: |
| 525 | if not commands: |
| 526 | raise ValueError("commands must be non-empty") |
| 527 | |
| 528 | pw = ProgressWriter(progress_file) |
no test coverage detected