diff --git a/planemo/reports/report_markdown_minimal.tpl b/planemo/reports/report_markdown_minimal.tpl index 5d1d36116..6d44fcefd 100644 --- a/planemo/reports/report_markdown_minimal.tpl +++ b/planemo/reports/report_markdown_minimal.tpl @@ -29,25 +29,16 @@ | Failure | {{ state.failure }} | | Skipped | {{ state.skipped }} | - -{% set display_job_attributes = {'command_line': 'Command Line', 'exit_code': 'Exit Code', 'stderr': 'Standard Error', 'stdout': 'Standard Output', 'traceback': 'Traceback'} %} {% for status, desc in {'error': 'Errored', 'failure': 'Failed', 'success': 'Passed'}.items() if state[status]%} {% set expanded = "open" if status in ("error", "failure") else "" %}
{{ desc }} {{ execution_type }}s {% for test in raw_data.tests %} {% if test.data.status == status %} {% if test.data.status == 'success' %} - -*
✅ {{ test.id|replace("#","# ") }} - +* ✅ {{ test.id|replace("#","# ") }} {% else %} - -*
❌ {{ test.id|replace("#","# ") }} - +* ❌ {{ test.id|replace("#","# ") }} {% endif %} - -
- {% endif %} {% endfor %}