gtr: Fix junit testsuites test count

This commit is contained in:
Joël Stemmer 2019-10-06 16:38:42 +01:00
parent 24143bf655
commit 5f2324f6d4

View File

@ -86,9 +86,8 @@ func JUnit(report Report) junit.Testsuites {
var suites junit.Testsuites var suites junit.Testsuites
for _, pkg := range report.Packages { for _, pkg := range report.Packages {
suite := junit.Testsuite{ suite := junit.Testsuite{
Name: pkg.Name, Name: pkg.Name,
Tests: len(pkg.Tests), Time: junit.FormatDuration(pkg.Duration),
Time: junit.FormatDuration(pkg.Duration),
} }
for _, line := range pkg.Output { for _, line := range pkg.Output {