summaryrefslogtreecommitdiffstats
path: root/pkg/integration
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-07-08 20:50:13 +1000
committerJesse Duffield <jessedduffield@gmail.com>2023-07-09 20:57:18 +1000
commit6282d55919614ccb99a2221d5dd1065deb4d0b44 (patch)
tree171e483f25ce2c36c63bb838d8f4783a42c18e79 /pkg/integration
parente588355f578ad18d21aa14d20c4a76b48e2adfd0 (diff)
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
Diffstat (limited to 'pkg/integration')
-rw-r--r--pkg/integration/clients/go_test.go5
1 files 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)