view 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
line wrap: on
line source

{% set bad = raw_data.summary.num_errors + raw_data.summary.num_failures + raw_data.summary.num_skips -%}
{% if bad == 0 -%}
All {{ raw_data.summary.num_tests }} test(s) executed passed.
{%- else -%}
There were problems with {{ bad }} out of {{raw_data.summary.num_tests}} test(s) executed.
{%- endif %}

{% for test in raw_data.tests -%}
{{ test.id | replace('functional.test_toolbox.TestForTool_', '') }}: {{ test.data.status }}
{% if test.data.output_problems -%}
{% for problem in test.data.output_problems -%}
{{problem | indent(2, True) }}
{% endfor %}
{% endif %}
{%- endfor %}