mirror of
https://github.com/anchore/grype
synced 2024-11-10 06:34:13 +00:00
aacf153a17
Signed-off-by: Felix Bünemann <Felix.Buenemann@gmail.com>
14 lines
804 B
XML
14 lines
804 B
XML
<?xml version="1.0" ?>
|
|
<testsuites name="grype-junit">
|
|
{{- $failures := len $.Matches }}
|
|
<testsuite tests="{{ $failures }}" failures="{{ $failures }}" name="{{ $.Distro.Name }}:{{ $.Distro.Version }}" errors="0" skipped="0">
|
|
<properties>
|
|
<property name="type" value="{{ $.Distro.Name }}"></property>
|
|
</properties>
|
|
{{- range .Matches }}
|
|
<testcase classname="{{ .Artifact.Name }}-{{ .Artifact.Version }} ({{ .Artifact.Type }})" name="[{{ .Vulnerability.Severity }}] {{ .Vulnerability.ID }}">
|
|
<failure message="{{ .Artifact.Name }}: {{ .Vulnerability.ID }}" type="description">{{html .Vulnerability.Description }} {{ .Artifact.CPEs }} {{ .Vulnerability.DataSource }}</failure>
|
|
</testcase>
|
|
{{- end }}
|
|
</testsuite>
|
|
</testsuites>
|