1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-12 11:15:00 +02:00

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
This commit is contained in:
Jesse Duffield 2023-07-08 20:50:13 +10:00
parent e588355f57
commit 6282d55919

View File

@ -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)