霍格沃兹测试开发

Allure 常用命令

霍格沃兹测试开发学社

ceshiren.com

Allure 命令

命令格式:allure  [option]   [command]   [command options]

allure --help 帮助
allure --version 查看版本信息  
allure serve  生成在线版本的测试
allure generate <allure-result中间文件>  -o   输出目录 (默认路径:allure-report)

实例

  • pom.xml配置与实例代码:https://ceshiren.com/t/topic/14551

运行

// 运行所有用例
mvn clean test
// 运行指定一个文件,或者多个文件,以逗号隔开
mvn clean package -Dtest=<文件名1> test
mvn clean package -Dtest=<文件名1>,<文件名2>,... test

测试报告位置

  • 测试结果保存在两个位置
    • target/surefire-reports/
    • allure-results/ 

展示测试报告

allure serve ./allure-results