{% macro render_notes(report) %} {% if report.notes %} {% set notes = report.notes.notes or [] %} {% set style = report.notes.style or {} %}
| Project Name | {{ report.proj_name }} |
| Environment | {{ report.env | upper }} |
| Base URL | {{ report.base_url }} |
| Duration | {{ report.duration }} |
| Start Time | {{ report.start_time }} |
| End Time | {{ report.end_time }} |
| Status | Count (%) |
|---|---|
| {% if cls %} {{ label }} {% else %} {{ label }} {% endif %} | {{ count }} ({{ pct }}%) |
| Module | Total | Passed (%) | Failed (%) | Broken (%) | Skipped (%) |
|---|---|---|---|---|---|
| {{ module_name }} | {{ t }} | {{ p }} ({{ (p/t*100 if t>0 else 0) | round(1) }}%) | {{ f }} ({{ (f/t*100 if t>0 else 0) | round(1) }}%) | {{ b }} ({{ (b/t*100 if t>0 else 0) | round(1) }}%) | {{ s }} ({{ (s/t*100 if t>0 else 0) | round(1) }}%) |
| Name | Error | Retries | Known Bugs |
|---|---|---|---|
| {{ module_name }} ---------- {{ run.name }} |
{{ run.error.partition('Stacktrace')[0] | escape }} | {{ retries_count }} | {{ known_bugs_count }} |