mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
Merge pull request #11 from benzaita/master
adding 'set-exit-code' flag
This commit is contained in:
commit
38eb577ca2
@ -9,11 +9,13 @@ import (
|
||||
var (
|
||||
noXMLHeader bool
|
||||
packageName string
|
||||
setExitCode bool
|
||||
)
|
||||
|
||||
func init() {
|
||||
flag.BoolVar(&noXMLHeader, "no-xml-header", false, "do not print xml header")
|
||||
flag.StringVar(&packageName, "package-name", "", "specify a package name (compiled test have no package name in output)")
|
||||
flag.BoolVar(&setExitCode, "set-exit-code", false, "set exit code to 1 if tests failed")
|
||||
}
|
||||
|
||||
func main() {
|
||||
@ -32,4 +34,8 @@ func main() {
|
||||
fmt.Printf("Error writing XML: %s\n", err)
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
if setExitCode && report.Failures() > 0 {
|
||||
os.Exit(1)
|
||||
}
|
||||
}
|
||||
|
15
parser.go
15
parser.go
@ -148,3 +148,18 @@ func findTest(tests []*Test, name string) *Test {
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Failures counts the number of failed tests in this report
|
||||
func (r *Report) Failures() int {
|
||||
count := 0
|
||||
|
||||
for _, p := range r.Packages {
|
||||
for _, t := range p.Tests {
|
||||
if t.Result == FAIL {
|
||||
count++
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return count
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user