speed-up integration tests by reducing the RetryBackend timeout

On my machine this decreases the runtime for `./cmd/restic` from 9.5s to
6.5s.
This commit is contained in:
Michael Eischer
2022-10-15 22:29:58 +02:00
parent 258b487d8f
commit e10420553b
3 changed files with 19 additions and 1 deletions
+2
View File
@@ -9,6 +9,7 @@ import (
"runtime"
"testing"
"github.com/restic/restic/internal/backend"
"github.com/restic/restic/internal/options"
"github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
@@ -171,6 +172,7 @@ func withTestEnvironment(t testing.TB) (env *testEnvironment, cleanup func()) {
repository.TestUseLowSecurityKDFParameters(t)
restic.TestDisableCheckPolynomial(t)
backend.TestFastRetries(t)
tempdir, err := ioutil.TempDir(rtest.TestTempDir, "restic-test-")
rtest.OK(t, err)