ci: do not retry error conditions that are always failure (#21716)

This commit is contained in:
Meghan Denny
2025-08-08 22:25:52 -08:00
committed by GitHub
parent 964d4dac2c
commit 2f84949fe0

View File

@@ -424,6 +424,7 @@ async function runTests() {
if (attempt >= maxAttempts || isAlwaysFailure(error)) {
flaky = false;
failedResults.push(failure);
break;
}
}