n8n-io/n8n · error · Error
`--checks` is only supported for `--suite binary-checks`
Error message
`--checks` is only supported for `--suite binary-checks`
What it means
Error "`--checks` is only supported for `--suite binary-checks`" thrown in n8n-io/n8n.
Source
Thrown at packages/@n8n/ai-workflow-builder.ee/evaluations/cli/argument-parser.ts:543
const featureFlags = parseFeatureFlags({
suite: parsed.suite,
});
const filters = parseFilters({
filter: parsed.filter,
notionId: parsed.notionId,
technique: parsed.technique,
});
if (parsed.suite !== 'pairwise' && (filters?.doSearch || filters?.dontSearch)) {
throw new Error(
'`--filter do:` and `--filter dont:` are only supported for `--suite pairwise`',
);
}
if (parsed.checks && parsed.suite !== 'binary-checks') {
throw new Error('`--checks` is only supported for `--suite binary-checks`');
}
return {
suite: parsed.suite,
backend: parsed.backend,
agent: parsed.agent,
verbose: parsed.verbose,
repetitions: parsed.repetitions,
concurrency: parsed.concurrency,
timeoutMs: parsed.timeoutMs,
experimentName: parsed.experimentName,
outputDir: parsed.outputDir,
outputCsv: parsed.outputCsv,
datasetName: parsed.datasetName,
maxExamples: parsed.maxExamples,
filters,
testCase: parsed.testCase,
promptsCsv: parsed.promptsCsv,View on GitHub (pinned to 5ac6606e81)
When it happens
Trigger: Thrown at packages/@n8n/ai-workflow-builder.ee/evaluations/cli/argument-parser.ts:543 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of n8n-io/n8n@5ac6606e81 (2026-08-12).
Data as JSON: /api/errors/336044a813a3f37c.
Report an issue: GitHub.