Report on test running times

Total time spent for tests: {{ "{:.2f}".format(total_duration) }} [sec]

Stats per suite: {% for item in suite_stats %} {% endfor %}
Time [sec] Suite
{{ "{:.2f}".format(item['duration_sec']) }} {{item['suite']}}

Stats across all testcases {% for item in tests %} {% if item.passed %} {%else%} {% endif %} {% endfor %}
Time [sec] Suite Test name
{{ "{:.2f}".format(item.duration_sec) }} {{item.suite()}} {{item.test_name()}}