diff --git a/optional_plugins/html/avocado_result_html/templates/results.html b/optional_plugins/html/avocado_result_html/templates/results.html index 8110d339ee..808a2dc7ec 100644 --- a/optional_plugins/html/avocado_result_html/templates/results.html +++ b/optional_plugins/html/avocado_result_html/templates/results.html @@ -50,8 +50,9 @@

Summary

Stats From {{ data.result.tests_total }} tests executed, - {{ data.result.passed }} passed and - {{ data.result.warned }} warned - success rate of + {{ data.result.passed }} passed, + {{ data.result.failed + data.result.errors + data.result.interrupted }} did not pass, and + {{ data.result.warned }} warned - success rate of {{ '%.2f'|format(data.result.rate) }}% (excluding SKIP and CANCEL) @@ -106,7 +107,17 @@

Summary

{{ test.variant }}
-
{{ test.status }}
+ + {% if test.status == 'PASS' %} +
+ {% elif test.status == 'WARN' or test.status == 'SKIP' or test.status == 'CANCEL' %} +
+ {% else %} +
+ {% endif %} + {{ test.status }} +
+
{{ test.time }}