(rel_path: str, specs: list[TargetSpec] | None)
| 321 | |
| 322 | |
| 323 | def target_matches(rel_path: str, specs: list[TargetSpec] | None) -> bool: |
| 324 | if specs is None: |
| 325 | return True |
| 326 | return any(target_spec_matches_path(rel_path, spec) for spec in specs) |
| 327 | |
| 328 | |
| 329 | def iter_scan_candidate_paths(repo_root: Path, cfg: ToolConfig) -> list[str]: |
no test coverage detected