comparison env/lib/python3.9/site-packages/planemo/reports/report_text.tpl @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
1 {% set bad = raw_data.summary.num_errors + raw_data.summary.num_failures + raw_data.summary.num_skips -%}
2 {% if bad == 0 -%}
3 All {{ raw_data.summary.num_tests }} test(s) executed passed.
4 {%- else -%}
5 There were problems with {{ bad }} out of {{raw_data.summary.num_tests}} test(s) executed.
6 {%- endif %}
7
8 {% for test in raw_data.tests -%}
9 {{ test.id | replace('functional.test_toolbox.TestForTool_', '') }}: {{ test.data.status }}
10 {% if test.data.output_problems -%}
11 {% for problem in test.data.output_problems -%}
12 {{problem | indent(2, True) }}
13 {% endfor %}
14 {% endif %}
15 {%- endfor %}