@agentv/core 3.10.1 → 3.10.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -14648,7 +14648,7 @@ async function runEvaluation(options) {
14648
14648
  setupLog(
14649
14649
  `sharedWorkspace=${hasSharedWorkspace} perTestIsolation=${isPerTestIsolation} usePool=${usePool} workers=${workers}`
14650
14650
  );
14651
- if (hasSharedWorkspace && !usePool && workers > 1) {
14651
+ if (hasSharedWorkspace && !usePool && workers > 1 && filteredEvalCases.length > 1) {
14652
14652
  console.warn(
14653
14653
  [
14654
14654
  `Warning: This eval uses a shared workspace with ${workers} workers.`,