mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 21:18:08 -05:00
Set non-zero exit code for build/run errors when using -set-exit-code
This commit is contained in:
parent
e6ab84c924
commit
43c784a63b
@ -102,7 +102,7 @@ func main() {
|
|||||||
}
|
}
|
||||||
fmt.Fprintf(out, "\n")
|
fmt.Fprintf(out, "\n")
|
||||||
|
|
||||||
if *setExitCode && report.HasFailures() {
|
if *setExitCode && !report.IsSuccessful() {
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -19,15 +19,18 @@ type Report struct {
|
|||||||
Packages []Package
|
Packages []Package
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *Report) HasFailures() bool {
|
func (r *Report) IsSuccessful() bool {
|
||||||
for _, pkg := range r.Packages {
|
for _, pkg := range r.Packages {
|
||||||
|
if pkg.BuildError.Name != "" || pkg.RunError.Name != "" {
|
||||||
|
return false
|
||||||
|
}
|
||||||
for _, t := range pkg.Tests {
|
for _, t := range pkg.Tests {
|
||||||
if t.Result == Fail {
|
if t.Result != Pass && t.Result != Skip {
|
||||||
return true
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
type Package struct {
|
type Package struct {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user