From 8c9cac244dfc1236b962c324c80b70957aa1227d Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Tue, 28 Apr 2026 16:26:12 -0700 Subject: [PATCH] fix(plugins): print gauntlet failure details --- scripts/check-plugin-gateway-gauntlet.mjs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scripts/check-plugin-gateway-gauntlet.mjs b/scripts/check-plugin-gateway-gauntlet.mjs index c17f925e3fd..29b308af760 100644 --- a/scripts/check-plugin-gateway-gauntlet.mjs +++ b/scripts/check-plugin-gateway-gauntlet.mjs @@ -567,6 +567,14 @@ async function main() { process.stdout.write( `[plugin-gauntlet] plugins=${selectedPlugins.length}/${matrix.length} rows=${rows.length} failures=${failures.length} observations=${summary.observations.length}\n`, ); + for (const failure of failures) { + process.stdout.write( + `[plugin-gauntlet] failure phase=${failure.phase} plugin=${failure.pluginId ?? ""} status=${failure.status} timedOut=${failure.timedOut} wallMs=${Math.round(failure.wallMs)} log=${failure.logPath}\n`, + ); + } + for (const observation of summary.observations.slice(0, 20)) { + process.stdout.write(`[plugin-gauntlet] observation ${JSON.stringify(observation)}\n`); + } if (failures.length > 0) { process.exitCode = 1; }