pytest使用allure生成测试报告

一、安装

allure-pytest安装 :

安装 allure-pytest 第三方库,命令>>            pip install allure-pytest
 

安装allure:

allure官网文档:      官网
下载安装   github内的allur下载链接;
选择版本,点击【Download】,下载后得到
allure-commandline-2.13.1 压缩文件后解压,将里面的Allure文件移动至自定义目录。
配置环境变量
进入Allure的bin目录,复制路径,确认即可;
WIN7需要添加;结尾(英文分号)
pytest使用allure生成测试报告_第1张图片

2. 打开电脑属性>> 点击【更改设置】>>【高级】>>【环境变量】>>【系统变量】>>【Path】;
    在Path添加Allure的bin目录路径,

3、验证 cmd 输入 allure --version

 

import allure
    @allure.feature('postman')
    @allure.story('postman-api')
    @pytest.mark.parametrize('data_dict', test_data)
    def test_login(self, data_dict):
        logger.info("获取行数据:%s." % data_dict)

pytest使用allure生成测试报告_第2张图片

if __name__ == '__main__':
    pytest.main(['-s', '-v', 'test_Login2.py', '--html=../report/report.html', '--alluredir','../report/allure-results'])
目录结构
report
  allure-resuilts
  
cd 到report目录
allure generate ./allure-results/ -o ./reporthtml/ --clean

 

pytest使用allure生成测试报告_第3张图片pytest使用allure生成测试报告_第4张图片

打开index.html,在pycharm去打开,直接去路径打开不OK

pytest使用allure生成测试报告_第5张图片

pytest使用allure生成测试报告_第6张图片

你可能感兴趣的:(python)