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

推荐订阅源

Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
云风的 BLOG
云风的 BLOG
Engineering at Meta
Engineering at Meta
Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
Recent Announcements
Recent Announcements
A
About on SuperTechFans
U
Unit 42
MyScale Blog
MyScale Blog
J
Java Code Geeks
博客园_首页
Blog — PlanetScale
Blog — PlanetScale
D
Docker
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 司徒正美
量子位
月光博客
月光博客
G
Google Developers Blog
V
V2EX
博客园 - 聂微东
宝玉的分享
宝玉的分享
IT之家
IT之家
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
test: improve full-suite failure summaries · openclaw/ope...
steipete · 2026-05-27 · via Recent Commits to openclaw:main

@@ -25,6 +25,7 @@ import {

2525

buildFullSuiteVitestRunPlans,

2626

createVitestRunSpecs,

2727

findUnmatchedExplicitTestTargets,

28+

formatFailedShardDigest,

2829

listFullExtensionVitestProjectConfigs,

2930

orderFullSuiteSpecsForParallelRun,

3031

parseTestProjectsArgs,

@@ -152,6 +153,7 @@ function isFullExtensionsProjectRun(specs) {

152153

async function runVitestSpecsParallel(specs, concurrency) {

153154

let nextIndex = 0;

154155

let exitCode = 0;

156+

const failures = [];

155157

const timings = [];

156158157159

const runWorker = async () => {

@@ -168,6 +170,14 @@ async function runVitestSpecsParallel(specs, concurrency) {

168170

}

169171

if (result.code !== 0) {

170172

exitCode = exitCode || result.code;

173+

failures.push({

174+

code: result.code,

175+

config: spec.config,

176+

includePatterns: spec.includePatterns,

177+

noOutputTimedOut: result.noOutputTimedOut,

178+

order: index,

179+

signal: result.signal,

180+

});

171181

}

172182

if (result.timing) {

173183

timings.push(result.timing);

@@ -176,7 +186,7 @@ async function runVitestSpecsParallel(specs, concurrency) {

176186

};

177187178188

await Promise.all(Array.from({ length: concurrency }, () => runWorker()));

179-

return { exitCode, timings };

189+

return { exitCode, failures, timings };

180190

}

181191182192

async function main() {

@@ -188,7 +198,9 @@ async function main() {

188198

if (unmatchedExplicitTargets.length > 0) {

189199

for (const unmatched of unmatchedExplicitTargets) {

190200

const suffix = unmatched.includePattern ? ` (${unmatched.includePattern})` : "";

191-

console.error(`[test] explicit test target matched no test files: ${unmatched.target}${suffix}`);

201+

console.error(

202+

`[test] explicit test target matched no test files: ${unmatched.target}${suffix}`,

203+

);

192204

}

193205

printTestSummary("failed", 1, performance.now() - suiteStartedAt);

194206

process.exitCode = 1;

@@ -276,17 +288,21 @@ async function main() {

276288

console.error(

277289

`[test] running ${parallelSpecs.length} Vitest shards with parallelism ${concurrency}`,

278290

);

279-

const { exitCode: parallelExitCode, timings } = await runVitestSpecsParallel(

280-

parallelSpecs,

281-

concurrency,

282-

);

291+

const {

292+

exitCode: parallelExitCode,

293+

failures,

294+

timings,

295+

} = await runVitestSpecsParallel(parallelSpecs, concurrency);

283296

writeShardTimings(timings, process.cwd(), baseEnv);

284297

printTestSummary(

285298

parallelExitCode === 0 ? "passed" : "failed",

286299

parallelSpecs.length,

287300

performance.now() - suiteStartedAt,

288301

"Vitest summaries above are per-shard, not aggregate totals.",

289302

);

303+

for (const line of formatFailedShardDigest(failures)) {

304+

console.error(line);

305+

}

290306

releaseLockOnce();

291307

if (parallelExitCode !== 0) {

292308

process.exit(parallelExitCode);