Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
ai3
tools
tabacco
Commits
2e82e01d
Commit
2e82e01d
authored
Mar 05, 2019
by
ale
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clear restic env vars in test
Prevents interactions from the local environment where the test is running.
parent
2c920d23
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
repository_restic_test.go
repository_restic_test.go
+1
-1
No files found.
repository_restic_test.go
View file @
2e82e01d
...
...
@@ -114,7 +114,7 @@ func TestRestic(t *testing.T) {
}
// Check the 'restic snapshots' output.
output
,
err
:=
exec
.
Command
(
"env"
,
"RESTIC_PASSWORD=testpass"
,
"restic"
,
"-r"
,
tmpdir
+
"/repo"
,
"snapshots"
,
"--json"
)
.
Output
()
output
,
err
:=
exec
.
Command
(
"env"
,
"RESTIC_REPOSITORY="
,
"RESTIC_PASSWORD_FILE="
,
"RESTIC_PASSWORD=testpass"
,
"restic"
,
"-r"
,
tmpdir
+
"/repo"
,
"snapshots"
,
"--json"
)
.
Output
()
if
err
!=
nil
{
t
.
Fatalf
(
"'restic snapshots' failed: %v"
,
err
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment