{% for result in results %}
📊 Test Results Breakdown
| Metric |
Count |
Percentage |
Status |
| Total Tests |
{{ result.total }} |
100% |
{{ result.total }} |
| Passed |
{{ result.passed }} |
{% if result.total > 0 %}
{{ ((result.passed / result.total) * 100)|round(1) }}%
{% else %}
0%
{% endif %}
|
✅ PASS |
| Failed |
{{ result.failures }} |
{% if result.total > 0 %}
{{ ((result.failures / result.total) * 100)|round(1) }}%
{% else %}
0%
{% endif %}
|
❌ FAIL |
| Errors |
{{ result.errors }} |
{% if result.total > 0 %}
{{ ((result.errors / result.total) * 100)|round(1) }}%
{% else %}
0%
{% endif %}
|
⚠️ ERROR |
| Skipped |
{{ result.skipped }} |
{% if result.total > 0 %}
{{ ((result.skipped / result.total) * 100)|round(1) }}%
{% else %}
0%
{% endif %}
|
⏭️ SKIP |
{% endfor %}