目录
Allure Pytest Adaptor是Pytest的一个插件,通过它我们可以生成Allure所需要的用于生成测试报告的数据。
前提:配置好Java环境,安装好pytest,可参考:https://blog.csdn.net/wust_lh/article/details/86545697
写在最前:由于pytest-allure-adaptor版本原因,导致安装配置好后程序一直报错,如图所示错误,尝试了好多类似的方法均没有解决,很是苦恼。后来想到受https://www.kancloud.cn/guanfuchang/python_selenium/714653启发,想到可能是allure版本原因造成的,于是将安装命令改为:pip install allure-pytest,安装成功后发现问题解决了。
本文认为:网上目前大多教程使用命令:pip install pytest-allure-adaptor是针对allure1的版本安装的,针对allure2安装则使用pip install allure-pytest。
一、安装Allure
1、Allure2.7.0下载
下载地址:https://github.com/allure-framework/allure2/releases/tag/2.7.0
2、解压
将下载的压缩包解压:
3、环境变量配置
在变量PATH中添加bin目录的路径,如本文压缩包解压路径:D:\soft\allure-2.7.0\bin
4、检查是否安装成功:
查看安装版本命令:allure --version
二、安装allure-pytest
1、安装命令:pip install allure-pytest