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
2.将allure插件解压到任意一个磁盘里,再将路径配置到环境变量里
例如:我的解压再D盘,D:\allure-2.17.2
那么配置的环境变量为:D:\allure-2.17.2\bin
3.配置好环境变量后安装一个python库 pytest-allure
在CMD输入:pip install allure-pytest
4.查看allure版本
5.在pycharm中打印allure测试报告命令为:
if __name__ == '__main__': pytest.main(['-s', 'suites/test*.py', '--alluredir', './temp'])
'suites/test*.py' 当前文件执行的路径, ‘’--allure是需要将当前执行的路径的json测试结果存放到当前目录下的temp文件夹
6.在终端打印allure测试报告
备注:终端在控制台叫Terminal
输入命令:allure generate ./temp -o ./report
如果存放的数据重复了,就输入 allure generate ./temp -o ./report --clean
备注:--clearn清除的是之前的旧的json数据
获取当前的temp文件夹json数据,将数据打包到当前路径的report文件夹
使用浏览器打开allure测试报告即可查看测试报告结果