- 安装 依赖
shell
allure-pytest
pytest
pytest-html
requests
- 配置 allure
shell
下载 allure 并配置环境变量
D:\dev\install2\allure-2.28.0\bin
配置到 path
- 执行脚本
shell
在项目根目录创建 pytest.ini
配置如下
[pytest]
# 指定 生成 报告的目录
addopts = -s --alluredir=./report
# 脚本 位置
testpaths = ./script
# 测试脚本名称
python_files = *.py
python_classes = Test*
python_functions = test*
- 执行如下命令
shell
# 生成报告
allure generate ./report -o report/html
# 运行报告 站点
allure open -h 127.0.0.1 -p 8088 report/html