mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
fixup: add skipped attr to testsuites
This commit is contained in:
parent
4b87b03e55
commit
e0a4faed09
@ -20,6 +20,7 @@ type Testsuites struct {
|
||||
Tests int `xml:"tests,attr,omitempty"`
|
||||
Errors int `xml:"errors,attr,omitempty"`
|
||||
Failures int `xml:"failures,attr,omitempty"`
|
||||
Skipped int `xml:"skipped,attr,omitempty"`
|
||||
Disabled int `xml:"disabled,attr,omitempty"`
|
||||
|
||||
Suites []Testsuite `xml:"testsuite,omitempty"`
|
||||
@ -31,6 +32,7 @@ func (t *Testsuites) AddSuite(ts Testsuite) {
|
||||
t.Tests += ts.Tests
|
||||
t.Errors += ts.Errors
|
||||
t.Failures += ts.Failures
|
||||
t.Skipped += ts.Skipped
|
||||
t.Disabled += ts.Disabled
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user