From 014828bef4b7ff3966c7c69c1b4f1c5d2afd0073 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Thu, 24 Feb 2022 21:55:05 +0000 Subject: [PATCH] junit: Correctly count skipped tests in junit Testsuite Fixes #116 --- pkg/junit/junit.go | 4 ++++ testdata/03-report.xml | 4 ++-- testdata/12-report.xml | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/pkg/junit/junit.go b/pkg/junit/junit.go index 82123b1..c9a045c 100644 --- a/pkg/junit/junit.go +++ b/pkg/junit/junit.go @@ -69,6 +69,10 @@ func (t *Testsuite) AddTestcase(tc Testcase) { if tc.Failure != nil { t.Failures += 1 } + + if tc.Skipped != nil { + t.Skipped += 1 + } } func (ts *Testsuite) SetTimestamp(t time.Time) { diff --git a/testdata/03-report.xml b/testdata/03-report.xml index 4a8727a..48a0fc8 100644 --- a/testdata/03-report.xml +++ b/testdata/03-report.xml @@ -1,6 +1,6 @@ - - + + diff --git a/testdata/12-report.xml b/testdata/12-report.xml index 231ccf5..fcb9c48 100644 --- a/testdata/12-report.xml +++ b/testdata/12-report.xml @@ -1,6 +1,6 @@ - - + +