{{ title }}

执行结果

{{ begin_time }}
{{ duration }}
{{ tester }}
{% if pass_rate < 70 %} 通过率 {{ pass_rate }}% ({{ passed }}/{{ total }}) {% elif pass_rate < 90 %} 通过率 {{ pass_rate }}% ({{ passed }}/{{ total }}) {% elif pass_rate == 100 %} 通过率 {{ pass_rate }}% ({{ passed }}/{{ total }}) {% else %} {{ pass_rate }}% 通过率 {{ pass_rate }}% ({{ passed }}/{{ total }}) {% endif %}

基本信息

{{ desc }}
{{ log_path }}
{{ report_path }}
{{ report_path }}

结果统计

{% for m1, foo1 in module_result.items() %} {% for m2, foo2 in foo1.subs.items() %} {% for m3, foo3 in foo2.subs.items() %} {% if foo2.idx == 1 and foo3.idx == 1 %} {% endif %} {% if foo3.idx == 1 %} {% endif %} {% if foo3.outcome.pass_rate < 70 %} {% elif foo3.outcome.pass_rate < 90 %} {% elif foo3.outcome.pass_rate == 100 %} {% else %} {% endif %} {% endfor %} {% endfor %} {% endfor %} {# 合计 #} {% if pass_rate < 70 %} {% elif pass_rate < 90 %} {% elif pass_rate == 100 %} {% else %} {% endif %}
一级模块 二级模块 三级模块 耗时 总数 通过 失败 阻塞 跳过 通过率
{{ foo1.name }}{{ foo2.name }}{{ foo3.name }} {{ foo3.outcome.duration }} {{ foo3.outcome.total }} {{ foo3.outcome.passed }} {{ foo3.outcome.failed }} {{ foo3.outcome.error }} {{ foo3.outcome.skipped }}{{ foo3.outcome.pass_rate }}%{{ foo3.outcome.pass_rate }}%{{ foo3.outcome.pass_rate }}%{{ foo3.outcome.pass_rate }}%
合计 {{ duration }} {{ total }} {{ passed }} {{ failed }} {{ error }} {{ skipped }}{{ pass_rate }}%{{ pass_rate }}%{{ pass_rate }}%{{ pass_rate }}%