惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
IT之家
IT之家
The Cloudflare Blog
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
N
Netflix TechBlog - Medium
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
L
LangChain Blog
博客园 - Franky
美团技术团队
J
Java Code Geeks
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
小众软件
小众软件
Y
Y Combinator Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
Docker
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(test): cap native worker pools for serial Vitest · op...
vincentkoc · 2026-04-25 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -40,12 +40,42 @@ export function resolveVitestNoOutputTimeoutMs(env = process.env) {

4040
4141

export function resolveVitestSpawnParams(env = process.env, platform = process.platform) {

4242

return {

43-

env,

43+

env: resolveVitestSpawnEnv(env),

4444

detached: shouldUseDetachedVitestProcessGroup(platform),

4545

stdio: ["inherit", "pipe", "pipe"],

4646

};

4747

}

4848
49+

export function resolveVitestSpawnEnv(env = process.env) {

50+

if (!shouldApplyNativeWorkerBudget(env)) {

51+

return env;

52+

}

53+
54+

const nativeWorkerCount = String(resolveNativeWorkerCount(env));

55+

return {

56+

...env,

57+

RAYON_NUM_THREADS: env.RAYON_NUM_THREADS?.trim() || nativeWorkerCount,

58+

TOKIO_WORKER_THREADS: env.TOKIO_WORKER_THREADS?.trim() || nativeWorkerCount,

59+

};

60+

}

61+
62+

function shouldApplyNativeWorkerBudget(env) {

63+

if (env.RAYON_NUM_THREADS?.trim() && env.TOKIO_WORKER_THREADS?.trim()) {

64+

return false;

65+

}

66+

return (

67+

env.OPENCLAW_TEST_PROJECTS_SERIAL === "1" || resolveExplicitVitestWorkerBudget(env) !== null

68+

);

69+

}

70+
71+

function resolveNativeWorkerCount(env) {

72+

return Math.min(resolveExplicitVitestWorkerBudget(env) ?? 1, 4);

73+

}

74+
75+

function resolveExplicitVitestWorkerBudget(env) {

76+

return parsePositiveInt(env.OPENCLAW_VITEST_MAX_WORKERS ?? env.OPENCLAW_TEST_WORKERS);

77+

}

78+
4979

export function shouldSuppressVitestStderrLine(line) {

5080

return SUPPRESSED_VITEST_STDERR_PATTERNS.some((pattern) => line.includes(pattern));

5181

}

Original file line numberDiff line numberDiff line change

@@ -230,7 +230,11 @@ const TOOLING_SOURCE_TEST_TARGETS = new Map([

230230

["scripts/lib/vitest-local-scheduling.mjs", ["test/scripts/vitest-local-scheduling.test.ts"]],

231231

[

232232

"scripts/run-vitest.mjs",

233-

["test/scripts/test-projects.test.ts", "test/scripts/vitest-local-scheduling.test.ts"],

233+

[

234+

"test/scripts/run-vitest.test.ts",

235+

"test/scripts/test-projects.test.ts",

236+

"test/scripts/vitest-local-scheduling.test.ts",

237+

],

234238

],

235239

["scripts/run-oxlint.mjs", ["test/scripts/run-oxlint.test.ts"]],

236240

["scripts/test-extension-batch.mjs", ["test/scripts/test-extension.test.ts"]],

Original file line numberDiff line numberDiff line change

@@ -58,6 +58,40 @@ describe("scripts/run-vitest", () => {

5858

});

5959

});

6060
61+

it("caps native Rust worker pools for serial Vitest runs", () => {

62+

expect(

63+

resolveVitestSpawnParams(

64+

{

65+

OPENCLAW_TEST_PROJECTS_SERIAL: "1",

66+

PATH: "/usr/bin",

67+

},

68+

"darwin",

69+

).env,

70+

).toMatchObject({

71+

OPENCLAW_TEST_PROJECTS_SERIAL: "1",

72+

RAYON_NUM_THREADS: "1",

73+

TOKIO_WORKER_THREADS: "1",

74+

});

75+

});

76+
77+

it("keeps explicit native Rust worker pool settings", () => {

78+

expect(

79+

resolveVitestSpawnParams(

80+

{

81+

OPENCLAW_VITEST_MAX_WORKERS: "2",

82+

PATH: "/usr/bin",

83+

RAYON_NUM_THREADS: "8",

84+

TOKIO_WORKER_THREADS: "6",

85+

},

86+

"darwin",

87+

).env,

88+

).toMatchObject({

89+

OPENCLAW_VITEST_MAX_WORKERS: "2",

90+

RAYON_NUM_THREADS: "8",

91+

TOKIO_WORKER_THREADS: "6",

92+

});

93+

});

94+
6195

it("suppresses rolldown plugin timing noise while keeping other stderr intact", () => {

6296

expect(

6397

shouldSuppressVitestStderrLine(