一、allure下载:
allure下载地方https://github.com/allure-framework/allure2/releases(windows环境搭建)
解压以后,把allure-commandline-2.12.1\allure-2.12.1\bin加到环境变量PATH
打开cmd,试一下allure --version,如果有显示版本号即按照成功
二、allure+junit demo调试
1、下载官方demo
下载地址如下:https://github.com/allure-examples
2、配置maven的settings.xml文件
https://www.jianshu.com/writer#/notebooks/48656905/notes/82329245
其中仓库地址需要修改
三、用例执行
//全部运⾏
$ mvn clean test
执行完成后,会在target文件夹下生成allure-results文件
四、生成报告
//查看报告
控制台先切换到指定路径下:
allure serve target/allure-results
执行上面脚本后,自动弹出allure的测试报告