File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ update_interop_year() {
43
43
node interop-scoring/main.js --year=${YEAR} --to=${TO_DATE}
44
44
node interop-scoring/main.js --year=${YEAR} --to=${TO_DATE} --experimental
45
45
46
- mv interop-${YEAR} -* .csv out/data/interop-${YEAR} /
46
+ mv interop-${YEAR} -* .csv interop- ${YEAR} -errors- * .txt out/data/interop-${YEAR} /
47
47
}
48
48
49
49
update_interop_year 2021
Original file line number Diff line number Diff line change @@ -312,7 +312,9 @@ async function main() {
312
312
// Write non-OK harness statuses to a file.
313
313
const lines = Array . from ( nonOKTests ) . sort ( ) ;
314
314
lines . push ( '' ) ;
315
- await fs . promises . writeFile ( 'non-ok-harness-statuses.txt' , lines . join ( '\n' ) , 'utf-8' ) ;
315
+ const errorsFilename = experimental ?
316
+ `interop-${ year } -errors-experimental.txt` : `interop-${ year } -errors-stable.txt` ;
317
+ await fs . promises . writeFile ( errorsFilename , lines . join ( '\n' ) , 'utf-8' ) ;
316
318
317
319
// TODO: Once the other score CSVs are no longer used, we can push
318
320
// some of this logic into scoreAlignedRuns and simplify things.
You can’t perform that action at this time.
0 commit comments