From 6282d55919614ccb99a2221d5dd1065deb4d0b44 Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sat, 8 Jul 2023 20:50:13 +1000 Subject: Only attempt integration tests once I was able to get all integration tests passing 20 times in a row without any retries so I'm going to see if we can rely on that in CI --- pkg/integration/clients/go_test.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkg/integration/clients/go_test.go b/pkg/integration/clients/go_test.go index 29d914708..c228898db 100644 --- a/pkg/integration/clients/go_test.go +++ b/pkg/integration/clients/go_test.go @@ -48,9 +48,8 @@ func TestIntegration(t *testing.T) { }, false, 0, - // allowing two attempts at the test. If a test fails intermittently, - // there may be a concurrency issue that we need to resolve. - 2, + // Only allowing one attempt per test. We'll see if we get any flakiness + 1, ) assert.NoError(t, err) -- cgit v1.2.3