UTX Statistics
{% if results[0]['result']|length == 0 %}
Warning: The current device network is abnormal, please check it and run it again!
{% elif results[0]['result'][0] == 'case0' %}
Warning: No test case found, please check the path!
{% else %}
运行设备:
{% for all in results %}{% if loop.first %}
- {{all['devices']}}
{% else %}
- {{all['devices']}}
{% endif %} {% endfor %}
{% for all in results %} {% if loop.first %}
{% else %}
{% endif %}
测试用例 |
执行结果 |
{% for r in all['result'] %}
{{r.name}} |
{{"成功" if r.result else "失败"}} |
{% endfor %}
{% endfor %}
{% endif %}