File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
import { readFile , writeFile } from "fs/promises" ;
2
- import { getAccuracyResultStorage } from "../tests/accuracy/sdk/accuracy-result-storage/get-accuracy-result-storage.js" ;
2
+ import { getAccuracyResultStorage } from "../../ tests/accuracy/sdk/accuracy-result-storage/get-accuracy-result-storage.js" ;
3
3
import {
4
4
AccuracyResult ,
5
5
AccuracyRunStatuses ,
6
6
ExpectedToolCall ,
7
7
LLMToolCall ,
8
8
ModelResponse ,
9
- } from "../tests/accuracy/sdk/accuracy-result-storage/result-storage.js" ;
10
- import { getCommitSHA } from "../tests/accuracy/sdk/git-info.js" ;
11
- import { HTML_TESTS_SUMMARY_FILE , HTML_TESTS_SUMMARY_TEMPLATE } from "../tests/accuracy/sdk/constants.js" ;
9
+ } from "../../ tests/accuracy/sdk/accuracy-result-storage/result-storage.js" ;
10
+ import { getCommitSHA } from "../../ tests/accuracy/sdk/git-info.js" ;
11
+ import { HTML_TESTS_SUMMARY_FILE , HTML_TESTS_SUMMARY_TEMPLATE } from "../../ tests/accuracy/sdk/constants.js" ;
12
12
13
13
type ComparableAccuracyResult = Omit < AccuracyResult , "promptResults" > & {
14
14
promptAndModelResponses : PromptAndModelResponse [ ] ;
Original file line number Diff line number Diff line change @@ -40,6 +40,6 @@ export MDB_ACCURACY_RUN_STATUS=$([ $JEST_EXIT_CODE -eq 0 ] && echo "done" || ech
40
40
npx tsx scripts/accuracy/update-accuracy-run-status.ts || echo " Warning: Failed to update accuracy run status to '$MDB_ACCURACY_RUN_STATUS '"
41
41
42
42
# This is optional but we do it anyways to generate a readable summary of report.
43
- npx tsx scripts/generate-test-summary.ts || echo " Warning: Failed to generate test summary HTML report"
43
+ npx tsx scripts/accuracy/ generate-test-summary.ts || echo " Warning: Failed to generate test summary HTML report"
44
44
45
45
exit $JEST_EXIT_CODE
You can’t perform that action at this time.
0 commit comments