(job: Job, url: str, job_dir: Path)
| 158 | |
| 159 | |
| 160 | def _run_blocking(job: Job, url: str, job_dir: Path) -> None: |
| 161 | _check_cancel(job) |
| 162 | source = download(job, url, job_dir) |
| 163 | _run_common(job, source, job_dir) |
| 164 | |
| 165 | |
| 166 | def _run_local_blocking(job: Job, source_path: Path, job_dir: Path) -> None: |
nothing calls this directly
no test coverage detected