summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-07-10 22:18:22 +1000
committerJesse Duffield <jessedduffield@gmail.com>2023-07-10 22:18:22 +1000
commit9c0a151dfa10af441b52aeefdac4302d87634440 (patch)
treee6f6717b244aa778298965a243d8120de2e374f5
parentf9414f275d32711dfd897c7006da3258f49c89ca (diff)
Retry tests on CI
Now that we are running each test 6 times on CI, the risk of flakiness is higher. I want to fix these tests for good but it'l take time, so we're just retrying for now
-rw-r--r--pkg/integration/clients/go_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/integration/clients/go_test.go b/pkg/integration/clients/go_test.go
index c228898db..318c1af9d 100644
--- a/pkg/integration/clients/go_test.go
+++ b/pkg/integration/clients/go_test.go
@@ -48,8 +48,8 @@ func TestIntegration(t *testing.T) {
},
false,
0,
- // Only allowing one attempt per test. We'll see if we get any flakiness
- 1,
+ // Allow two attempts at each test to get around flakiness
+ 2,
)
assert.NoError(t, err)