加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
run_all_cases.py 639 Bytes
一键复制 编辑 原始数据 按行查看 历史
YouJeffrey 提交于 2021-11-18 17:29 . app自动化测试实战
# encoding: utf-8
# @author: Jeffrey
# @file: run_all_cases.py
# @time: 2021/11/18 12:13
# @desc:
import os
import pytest
# 当前路径(使用 abspath 方法可通过dos窗口执行)
current_path = os.path.dirname(os.path.abspath(__file__))
# json报告路径
json_report_path = os.path.join(current_path,'report/json')
# html报告路径
html_report_path = os.path.join(current_path,'report/html')
# 执行pytest下的用例并生成json文件
pytest.main(['-s','-v','--alluredir=%s'%json_report_path,'--clean-alluredir'])
# 把json文件转成html报告
os.system('allure generate %s -o %s --clean'%(json_report_path,html_report_path))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化