(path: Path | str)
| 191 | |
| 192 | |
| 193 | def resolve_repo_path(path: Path | str) -> Path: |
| 194 | path = Path(path) |
| 195 | return path if path.is_absolute() else REPO_ROOT / path |
| 196 | |
| 197 | |
| 198 | def add_reference_path(reference_root: Path) -> Path: |
no outgoing calls
no test coverage detected