From 11adaa15a8a64946b0e9f63ebc3a7d0f10fab97b Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 2 Mar 2026 22:29:13 +0000 Subject: [PATCH] test: isolate high-variance suites in parallel scheduler --- scripts/test-parallel.mjs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/test-parallel.mjs b/scripts/test-parallel.mjs index 83bf5e77302..176737d7be3 100644 --- a/scripts/test-parallel.mjs +++ b/scripts/test-parallel.mjs @@ -53,6 +53,13 @@ const unitIsolatedFilesRaw = [ "src/hooks/install.test.ts", // Download/extraction safety cases can spike under unit-fast contention. "src/agents/skills-install.download.test.ts", + // Skills discovery/snapshot suites are filesystem-heavy and high-variance in vmForks lanes. + "src/agents/skills.test.ts", + "src/agents/skills.buildworkspaceskillsnapshot.test.ts", + "src/browser/extension-relay.test.ts", + "extensions/acpx/src/runtime.test.ts", + // Shell-heavy script harness can contend under vmForks startup bursts. + "test/scripts/ios-team-id.test.ts", // Heavy runner/exec/archive suites are stable but contend on shared resources under vmForks. "src/agents/pi-embedded-runner.test.ts", "src/agents/bash-tools.test.ts",