don't retry vendor tests

This commit is contained in:
Meghan Denny
2025-10-21 12:39:16 -07:00
parent 0eb7fe1c38
commit 2b80d8c83b

View File

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