{% for group in groups %}

{{ group.name }}

  • Ran {{ group.n_tests.total }} test{% if group.n_tests.total > 1 %}s{% endif %}
  • {{ group.duration }}
  • {{ group.status }}
{% for testcase in group.testcases %} {% include 'testcase.html' %} {% endfor %}
{% with n_tests = group.n_tests %} {% include 'info_list.html' %} {% endwith %}
{% endfor %}