mirror of
https://fastgit.cc/github.com/openclaw/openclaw
synced 2026-05-01 06:36:23 +08:00
fix(qa): surface missing required scenarios in parity report
This commit is contained in:
@@ -147,6 +147,7 @@ export function buildQaAgenticParityComparison(params: {
|
||||
const baselineMetrics = computeQaAgenticParityMetrics(params.baselineSummary);
|
||||
|
||||
const scenarioNames = new Set([
|
||||
...QA_AGENTIC_PARITY_SCENARIO_TITLES,
|
||||
...params.candidateSummary.scenarios.map((scenario) => scenario.name),
|
||||
...params.baselineSummary.scenarios.map((scenario) => scenario.name),
|
||||
]);
|
||||
|
||||
@@ -171,7 +171,7 @@ export function registerQaLabCli(program: Command) {
|
||||
"--cli-auth-mode <mode>",
|
||||
"CLI backend auth mode for live Claude CLI runs: auto, api-key, or subscription",
|
||||
)
|
||||
.option("--parity-pack <name>", 'Preset scenario pack; currently only "agentic" is supported')
|
||||
.option("--parity-pack <name>", "Preset scenario pack; currently only \"agentic\" is supported")
|
||||
.option("--scenario <id>", "Run only the named QA scenario (repeatable)", collectString, [])
|
||||
.option("--concurrency <count>", "Scenario worker concurrency", (value: string) =>
|
||||
Number(value),
|
||||
|
||||
Reference in New Issue
Block a user