From 2b80d8c83b3e545650b03585b7aa3fa1feb5da9d Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Tue, 21 Oct 2025 12:39:16 -0700 Subject: [PATCH] don't retry vendor tests --- scripts/runner.node.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/runner.node.mjs b/scripts/runner.node.mjs index 87fc6ea6e3..cb06d67ca2 100755 --- a/scripts/runner.node.mjs +++ b/scripts/runner.node.mjs @@ -477,7 +477,7 @@ async function runTests() { failure ||= result; flaky ||= true; - if (attempt >= maxAttempts || isAlwaysFailure(error)) { + if (attempt >= maxAttempts || isAlwaysFailure(error) || title.startsWith("vendor")) { flaky = false; failedResults.push(failure); failedResultsTitles.push(title);