Return a deterministic scratch directory for one example run.
(relpath: str, artifacts_dir: Path)
| 586 | |
| 587 | |
| 588 | def artifact_dir_for_example(relpath: str, artifacts_dir: Path) -> Path: |
| 589 | """Return a deterministic scratch directory for one example run.""" |
| 590 | stem = normalize_relpath(str(Path(relpath).with_suffix(""))) |
| 591 | return artifacts_dir / stem.replace("/", "__") |
| 592 | |
| 593 | |
| 594 | def parse_rerun_from_log(log_path: Path) -> list[str]: |
no test coverage detected