We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6ce388 commit 207ea93Copy full SHA for 207ea93
1 file changed
packages/core/src/evaluation/orchestrator.ts
@@ -885,6 +885,7 @@ export async function runEvaluation(
885
}
886
return [];
887
888
+ validateDependencyGraph(filteredEvalCases);
889
890
const runtime = createEvaluationRuntime({
891
target,
@@ -1068,8 +1069,7 @@ export async function runEvaluation(
1068
1069
// fail_on_error tracking (best-effort under concurrency > 1, matching budgetExhausted semantics)
1070
let failOnErrorTriggered = false;
1071
- // --- Validate dependency graph and compute execution waves ---
1072
- validateDependencyGraph(filteredEvalCases);
+ // --- Compute dependency-aware execution waves ---
1073
const waves = computeWaves(filteredEvalCases);
1074
1075
// Track completed test results for dependency injection
0 commit comments