自动化工具——allure(报告)介绍及环境安装

介绍:
allure是生成自动化测试报告用的一个库,相对于其他报告库,他的可读性最好、最直观。
常见 allure 配合 pytest 框架使用。

安装:
1.git下载安装包:https://github.com/allure-framework/allure2/releases
自动化工具——allure(报告)介绍及环境安装_第1张图片
2.解压到 allure-2.17.3 文件夹
自动化工具——allure(报告)介绍及环境安装_第2张图片
3.进入bin文件夹,执行下allure.bat文件;
4.再添加环境变量path
在这里插入图片描述
最后打开cmd,执行allure --version

自动化工具——allure(报告)介绍及环境安装_第3张图片

python 安装 allure模块:执行 pip3 install allure-pytest

自动化工具——allure(报告)介绍及环境安装_第4张图片
python 安装 pytest 模块:执行 pip3 install pytest

你可能感兴趣的:(测试,自动化,python,运维)