1 Star 0 Fork 0

zxj/python-pytest-allure

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.py 736 Bytes
一键复制 编辑 原始数据 按行查看 历史
zxj 提交于 2024-08-11 21:55 . 项目初始化
# 使用pytest收集所有的测试用例并运行,输出allure报告
import pytest
import os
# 生成JSON数据,加上--clean-alluredir解决JSON文件生成冗余问题
pytest.main()
# 命令:pytest -v -s --alluredir=outputs/reports/allure --clean-alluredir
# 将JSON文件转换成HTML格式的测试报告(生成JSON文件路径:outputs/reports/allure; 生成HTML报告路径:outputs/reports/html)
os.system("allure generate outputs/reports/allure -o outputs/reports/html --clean")
# 命令:allure generate outputs/reports/allure -o outputs/reports/html --clean
# 打开测试报告,Jenkins启动需要注释这一步
os.system("allure serve outputs/reports/allure")
# 命令:allure serve outputs/reports/allure
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/zzh911/python-pytest-allure.git
git@gitee.com:zzh911/python-pytest-allure.git
zzh911
python-pytest-allure
python-pytest-allure
master

搜索帮助