mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 13:08:07 -05:00
parser/gotest: Don't ignore output when there were no tests
In some cases we may have captured some output for a package that didn't have any tests. We should include it in the generated report as it may contain useful information.
This commit is contained in:
parent
d84b41a3f9
commit
8648745762
@ -210,6 +210,8 @@ func (b *reportBuilder) CreatePackage(name, result string, duration time.Duratio
|
|||||||
Name: name,
|
Name: name,
|
||||||
Output: b.output.Get(globalID),
|
Output: b.output.Get(globalID),
|
||||||
}
|
}
|
||||||
|
} else if b.output.Contains(globalID) {
|
||||||
|
pkg.Output = b.output.Get(globalID)
|
||||||
}
|
}
|
||||||
b.packages = append(b.packages, pkg)
|
b.packages = append(b.packages, pkg)
|
||||||
b.output.Clear(globalID)
|
b.output.Clear(globalID)
|
||||||
|
1
testdata/015-report.xml
vendored
1
testdata/015-report.xml
vendored
@ -4,5 +4,6 @@
|
|||||||
<properties>
|
<properties>
|
||||||
<property name="go.version" value="1.0"></property>
|
<property name="go.version" value="1.0"></property>
|
||||||
</properties>
|
</properties>
|
||||||
|
<system-out><![CDATA[testing: warning: no tests to run]]></system-out>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
</testsuites>
|
</testsuites>
|
||||||
|
1
testdata/034-report.xml
vendored
1
testdata/034-report.xml
vendored
@ -9,6 +9,7 @@
|
|||||||
<properties>
|
<properties>
|
||||||
<property name="go.version" value="1.0"></property>
|
<property name="go.version" value="1.0"></property>
|
||||||
</properties>
|
</properties>
|
||||||
|
<system-out><![CDATA[testing: warning: no tests to run]]></system-out>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
<testsuite name="package/name" tests="0" failures="0" errors="0" id="2" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
<testsuite name="package/name" tests="0" failures="0" errors="0" id="2" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
||||||
<properties>
|
<properties>
|
||||||
|
1
testdata/111-report.xml
vendored
1
testdata/111-report.xml
vendored
@ -4,5 +4,6 @@
|
|||||||
<properties>
|
<properties>
|
||||||
<property name="go.version" value="1.0"></property>
|
<property name="go.version" value="1.0"></property>
|
||||||
</properties>
|
</properties>
|
||||||
|
<system-out><![CDATA[testing: warning: no tests to run]]></system-out>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
</testsuites>
|
</testsuites>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user