(partialPath: string, evalData: EvalDataV2)
| 127 | } |
| 128 | |
| 129 | function savePartialResults(partialPath: string, evalData: EvalDataV2): void { |
| 130 | fs.writeFileSync(partialPath, JSON.stringify(evalData, null, 2)) |
| 131 | console.log(`💾 Saved partial results to ${partialPath}`) |
| 132 | } |
| 133 | |
| 134 | export async function generateEvalFileV2({ |
| 135 | repoUrl, |
no outgoing calls
no test coverage detected