Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: don't do retries on tests in CI on master, release branches
First of all, test retries don't even have the correct behavior: cockroachdb#103042 This means that a successfully-retried test tramples the logs of previously-failed tests, which is very confusing and erases your ability to debug the test. Also, we are focusing on quality and wiping out flaky and skipped tests. This to me suggests we should not be retrying tests to let already-flaky tests through. Rather, we should be surfacing real failures immediately. For both of these reasons I turn off test retries for unit tests on `master` and release branches. We keep it for `staging` so `bors` is unaffected. Epic: none Release note: None
- Loading branch information