mirror of
https://github.com/oven-sh/bun
synced 2026-02-15 21:32:05 +00:00
don't retry vendor tests
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user