Don't retry failed integration tests

Now that we solved all known concurrency issues and our tests should be
100% deterministic, reduce MaxAttempts to 1 so that tests fail
immediately. We don't want to paper over existing flakiness any more.
This commit is contained in:
Stefan Haller 2026-07-10 08:16:25 +02:00
parent e299de3270
commit 5769ab2190

View file

@ -56,7 +56,7 @@ func TestIntegration(t *testing.T) {
CodeCoverageDir: codeCoverageDir,
InputDelay: 0,
// Allow two attempts at each test to get around flakiness
MaxAttempts: 2,
MaxAttempts: 1,
})
assert.NoError(t, err)