(path: Path)
| 109 | |
| 110 | |
| 111 | def _iter_jsonl_files(path: Path) -> Iterator[Path]: |
| 112 | if path.is_file(): |
| 113 | if path.suffix.lower() == ".jsonl": |
| 114 | yield path |
| 115 | return |
| 116 | if not path.exists(): |
| 117 | return |
| 118 | for child in sorted(path.rglob("*.jsonl")): |
| 119 | if child.is_file(): |
| 120 | yield child |
| 121 | |
| 122 | |
| 123 | def _iter_jsonl_results(path: Path, benchmark_index: dict[str, dict[str, Any]]) -> Iterator[NormalizedResult]: |
no outgoing calls
no test coverage detected