mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-06 05:28:07 -05:00
Define flags directly and remove init function
This commit is contained in:
parent
45752f2672
commit
f79a156ed8
@ -10,19 +10,12 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
noXMLHeader bool
|
noXMLHeader = flag.Bool("no-xml-header", false, "do not print xml header")
|
||||||
packageName string
|
packageName = flag.String("package-name", "", "specify a package name (compiled test have no package name in output)")
|
||||||
goVersionFlag string
|
goVersionFlag = flag.String("go-version", "", "specify the value to use for the go.version property in the generated XML")
|
||||||
setExitCode bool
|
setExitCode = flag.Bool("set-exit-code", false, "set exit code to 1 if tests failed")
|
||||||
)
|
)
|
||||||
|
|
||||||
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.StringVar(&goVersionFlag, "go-version", "", "specify the value to use for the go.version property in the generated XML")
|
|
||||||
flag.BoolVar(&setExitCode, "set-exit-code", false, "set exit code to 1 if tests failed")
|
|
||||||
}
|
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
@ -32,20 +25,20 @@ func main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Read input
|
// Read input
|
||||||
report, err := parser.Parse(os.Stdin, packageName)
|
report, err := parser.Parse(os.Stdin, *packageName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Printf("Error reading input: %s\n", err)
|
fmt.Printf("Error reading input: %s\n", err)
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Write xml
|
// Write xml
|
||||||
err = formatter.JUnitReportXML(report, noXMLHeader, goVersionFlag, os.Stdout)
|
err = formatter.JUnitReportXML(report, *noXMLHeader, *goVersionFlag, os.Stdout)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
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 {
|
if *setExitCode && report.Failures() > 0 {
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user