mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 21:18:08 -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 (
|
var (
|
||||||
noXMLHeader bool
|
noXMLHeader bool
|
||||||
packageName string
|
packageName string
|
||||||
|
setExitCode bool
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
flag.BoolVar(&noXMLHeader, "no-xml-header", false, "do not print xml header")
|
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.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() {
|
func main() {
|
||||||
@ -32,4 +34,8 @@ func main() {
|
|||||||
fmt.Printf("Error writing XML: %s\n", err)
|
fmt.Printf("Error writing XML: %s\n", err)
|
||||||
os.Exit(1)
|
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
|
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