comparison env/lib/python3.7/site-packages/planemo/reports/xunit.tpl @ 5:9b1c78e6ba9c draft default tip

"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
author shellac
date Mon, 01 Jun 2020 08:59:25 -0400
parents 79f47841a781
children
comparison
equal deleted inserted replaced
4:79f47841a781 5:9b1c78e6ba9c
1 <?xml version="1.0" encoding="UTF-8"?>
2 <testsuite name="planemo-{{ suitename }}"
3 tests="{{ results.total }}"
4 errors="{{ results.errors }}"
5 failures="{{ results.failures }}"
6 skip="{{ results.skips }}">
7 {% for testcase in tests %}
8 <testcase classname="{{ testcase.classname }}" name="{{ testcase.name }}" time="{{ testcase.time }}">
9 {% if 'errorType' in testcase %}
10 <error type="planemo.{{ testcase.errorType }}" message="{{ testcase.errorMessage }}">
11 {{ testcase.errorContent }}
12 </error>
13 {% endif %}
14 <system-out>
15 {% for out in testcase.stdout %}{{ out }}
16 {% endfor %}
17 </system-out>
18 <system-err>
19 {% for err in testcase.stderr %}{{ err }}
20 {% endfor %}
21 </system-err>
22 </testcase>
23 {% endfor %}
24 </testsuite>