From e0a4faed092f0e4f97e04fcc11ececcf30dc384f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Fri, 18 Mar 2022 22:17:26 +0000 Subject: [PATCH] fixup: add skipped attr to testsuites --- pkg/junit/junit.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/junit/junit.go b/pkg/junit/junit.go index e140180..cdaaf72 100644 --- a/pkg/junit/junit.go +++ b/pkg/junit/junit.go @@ -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 }