{{ title }}

{% if description %}

{{ description }}

{% endif %}

开始时间: {{ report_summary.start_time }}

执行耗时: {{ report_summary.duration }}

状态:  通过: {{ report_summary.status.pass }}   失败:{{ report_summary.status.fail }}   错误:{{ report_summary.status.error }}   跳过:{{ report_summary.status.skip }} 

{{ report_detail.count }}

用例总数

{{ report_summary.suite_count }}

套件总数
{% for test in report_detail.tests %} {% for detail in test.detail %} {% if detail.has_output %} {% else %} {% endif %} {% endfor %} {% endfor %}
测试套件/用例 用例总数 通过 失败 错误 跳过 查看
{{ test.summary.desc }} {{ test.summary.count }} {{ test.summary.pass }} {{ test.summary.fail }} {{ test.summary.error }} {{ test.summary.skip }} 查看详情
{{ detail.desc }}
{{ detail.status | upper }}
{{ detail.desc }}
{{ detail.status | upper }}
总计 {{ report_detail.count }} {{ report_detail.pass }} {{ report_detail.fail }} {{ report_detail.error }} {{ report_detail.skip }}