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);