pytest 生成测试报告

安装依赖

bash 复制代码
pip  install  allure-pytest
pip  install  pytest
pip  install  pytest-html
pip  install  requests

配置 allure

bash 复制代码
下载 allure  并配置环境变量
D:\allure-2.28.0\bin
 配置到 path

执行脚本

bash 复制代码
在项目根目录创建  pytest.ini

配置如下
[pytest]
#  指定  生成 报告的目录
addopts = -s --alluredir=./report
# 脚本 位置
testpaths = ./script
# 测试脚本名称
python_files = *.py
python_classes = Test*
python_functions = test*

生成测试报告

bash 复制代码
# 生成报告 
allure generate ./report -o report/html
# 运行报告 站点
allure open -h 127.0.0.1 -p 8088 report/html
相关推荐
明金同学3 分钟前
腾讯云海外服务器Window切换为linux系统(从Window DD 到 Linux)
linux·服务器·腾讯云
fendouweiqian11 分钟前
python请求SSL问题
网络·python·ssl
fuvuof37 分钟前
设计模式——单例模式和工厂模式
python·单例模式·设计模式
东方佑1 小时前
给图像去除水印攻
人工智能·python
CC大煊1 小时前
【Linux】vi/vim 使用技巧
linux·运维·vim
Milk夜雨1 小时前
数据库进阶教程:结合编程实现动态数据操作
数据库·python·adb
tangjunjun-owen1 小时前
异常安全重启运行机制:健壮的Ai模型训练自动化
人工智能·python·安全·异常重运行或重启
是十一月末1 小时前
Linux的基本功能和命令
linux·服务器·开发语言·数据库
江上挽风&sty1 小时前
python爬虫--小白篇【爬取B站视频】
爬虫·python