mirror of
https://github.com/octoleo/restic.git
synced 2024-12-22 19:08:55 +00:00
Add error checking for CI tests
This commit is contained in:
parent
b2846ea49d
commit
baece5eeb3
@ -468,10 +468,16 @@ func main() {
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
foundError := false
|
||||
for _, f := range []func() error{env.Prepare, env.RunTests, env.Teardown} {
|
||||
err := f()
|
||||
if err != nil {
|
||||
foundError = true
|
||||
fmt.Fprintf(os.Stderr, "error: %v\n", err)
|
||||
}
|
||||
}
|
||||
|
||||
if foundError {
|
||||
os.Exit(1)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user