Merge pull request #3973 from MichaelEischer/speedup-integration-tests

speed-up integration tests by reducing the RetryBackend timeout
This commit is contained in:
Michael Eischer
2022-10-21 21:17:35 +02:00
committed by GitHub
6 changed files with 28 additions and 69 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)