{{title}}

{% if description %}
{{description}}
{% endif %} {% if tester %}
执行人: {{tester}}
{% endif %}
概要: 总数: {{total}} 执行数: {{run_num}} 通过: {{pass_num}} 失败: {{fail_num}} 出错: {{error_num}} 跳过: {{skipped_num}}
开始时间: {{start_at}}
结束时间: {{end_at}}
耗时: {{duration}}s
平台: {{ platform }} 操作系统 {{ system }} Python版本: {{ python_version }} 环境变量
{% for key, value in env.items() %} {{ key }}={{ value }}
{% endfor %}
{% for test_class in test_classes %} {% for test in test_class.test_cases %} {% endfor %} {% endfor %}
序号用例总数通过失败出错耗时操作
{{test_class.name}}{{test_class.total}}{{test_class.pass_num}}{{test_class.fail_num}}{{test_class.error_num}}0s 
{{test.sn}}{{test.full_name}}:{{ test.doc }} {{test.status}} {{test.duration}} Detail
标签 {{ test.tags }}
等级 {{test.level}}
开始时间 {{ test.start_at }}
结束时间 {{ test.end_at }}
代码
{{ test.code}}
{% if test.output %}输出:
{{test.output}}
{% endif %} {% if test.exec_info %}报错信息:
{{test.exec_info}}
{% endif %}