mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 13:08:07 -05:00

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.
20 lines
859 B
XML
20 lines
859 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<testsuites>
|
|
<testsuite name="package/name" tests="0" failures="0" errors="0" id="0" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
</testsuite>
|
|
<testsuite name="package/name" tests="0" failures="0" errors="0" id="1" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
<system-out><![CDATA[testing: warning: no tests to run]]></system-out>
|
|
</testsuite>
|
|
<testsuite name="package/name" tests="0" failures="0" errors="0" id="2" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
</testsuite>
|
|
</testsuites>
|