forked from TrueCloudLab/restic
Fix restic configuration for integration tests
This commit is contained in:
parent
9c2478a291
commit
d8d09b6d69
1 changed files with 4 additions and 5 deletions
|
@ -24,12 +24,11 @@ func setupTempdir(t testing.TB) (tempdir string) {
|
|||
}
|
||||
|
||||
func configureRestic(t testing.TB, tempdir string) {
|
||||
// use cache dir within tempdir
|
||||
OK(t, os.Setenv("RESTIC_CACHE", filepath.Join(tempdir, "cache")))
|
||||
|
||||
// configure environment
|
||||
opts.CacheDir = filepath.Join(tempdir, "cache")
|
||||
opts.Repo = filepath.Join(tempdir, "repo")
|
||||
OK(t, os.Setenv("RESTIC_PASSWORD", *TestPassword))
|
||||
opts.Quiet = true
|
||||
|
||||
opts.password = *TestPassword
|
||||
}
|
||||
|
||||
func cleanupTempdir(t testing.TB, tempdir string) {
|
||||
|
|
Loading…
Reference in a new issue