pyhon:使用allure 生成测试报告

1.gitHub 下载allure插件,zip格式

Release 2.17.2 · allure-framework/allure2 · GitHubAllure Report is a flexible, lightweight multi-language test reporting tool. It provides clear graphical reports and allows everyone involved in the development process to extract the maximum of information from the everyday testing process - Release 2.17.2 · allure-framework/allure2https://github.com/allure-framework/allure2/releases/tag/2.17.2

pyhon:使用allure 生成测试报告_第1张图片

2.将allure插件解压到任意一个磁盘里,再将路径配置到环境变量里

例如:我的解压再D盘,D:\allure-2.17.2

那么配置的环境变量为:D:\allure-2.17.2\bin

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

3.配置好环境变量后安装一个python库 pytest-allure 

在CMD输入:pip install allure-pytest

 pyhon:使用allure 生成测试报告_第3张图片

 4.查看allure版本

pyhon:使用allure 生成测试报告_第4张图片

5.在pycharm中打印allure测试报告命令为: 

if __name__ == '__main__':
    pytest.main(['-s', 'suites/test*.py', '--alluredir', './temp'])

'suites/test*.py' 当前文件执行的路径, ‘’--allure是需要将当前执行的路径的json测试结果存放到当前目录下的temp文件夹

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

6.在终端打印allure测试报告

备注:终端在控制台叫Terminal

输入命令:allure generate ./temp -o ./report

如果存放的数据重复了,就输入 allure generate ./temp -o ./report --clean

备注:--clearn清除的是之前的旧的json数据

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

 

获取当前的temp文件夹json数据,将数据打包到当前路径的report文件夹

pyhon:使用allure 生成测试报告_第7张图片

使用浏览器打开allure测试报告即可查看测试报告结果

pyhon:使用allure 生成测试报告_第8张图片

你可能感兴趣的:(python)