本机环境:
Python3.7.3
pytest 7.2.2
1、CMD上安装python的allure插件:
pip install allure-pytest -i https://mirrors.aliyun.com/pypi/simple
本机环境有点问题,需要在项目的venv\Lib\site-packages的库上安装此插件:
pip install --target=E:\py_project\pytest001\venv\Lib\site-packages allure-pytest -i https://mirrors.aliyun.com/pypi/simple
2、安装allure工具和配置系统环境:
allure是一个命令行工具,去官网上下载最新版本的zip包:https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline/
下载完后,解压zip包,把bin目录添加到环境变量Path下。配置系统变量后,在cmd或pycharm控制台上输入:
C:\Users\Anthony\Desktop>allure --version
2.10.0
有版本号表示配置成功
3、使用一个Pytest脚本,跑用例之前先配置一个pytest.ini配置文件,把allure的配置写上addopts,并在主运行文件中main函数增加对应的内容:
[pytest]
addopts = -v -s --html=./report/report.html --alluredir ./report/result --clean-alluredir
testpaths = ./testcases
python_files = test_*.py
python_classes = Test*
python_functions = test_*
主运行文件:
import pytest
import os
if __name__=="__main__":
pytest.main(["-s","./","--capture=sys"]) #--capture=sys会把报错的情况写进测试报告中
os.system('allure generate report/result -o report/allure_html --clean')
allure generate ./temps –o ./report --clean
参数说明:
./temp 临时的json格式报告的路径
-o 输出output
./report 生成的allure报告的路径
–clean 清空./report路径原来的报告
注意:主文件中report/result一定要与与pytest.ini文件的addopts的目录一样。此目录是自己设置存放报告的目录
4、配置完成后,运行一下主文件,跑完用例,就会自动生成allure的html报表:
报表路径: