本文主要是介绍Allure+testng maven配置,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
想把testng的报告改成Allure的,因为Allure里可以显示图片。
网上找了半天,maven配起来一直再报错,可能版本不对,最终根据官网指导,成功运行。
LAST_VERSION:2.13.5
https://docs.qameta.io/allure/#_testng
<properties><aspectj.version>1.8.10</aspectj.version>
</properties><dependencies><dependency><groupId>io.qameta.allure</groupId><artifactId>allure-testng</artifactId><version>LAST_VERSION</version><scope>test</scope></dependency><!-- https://mvnrepository.com/artifact/org.testng/testng --><dependency><groupId>org.testng</groupId><artifactId>testng</artifactId><version>7.1.0</version></dependency>
</dependencies><build><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-surefire-plugin</artifactId><version>2.20</version><configuration><argLine>-javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar"</argLine></configuration><dependencies><dependency><groupId>org.aspectj</groupId><artifactId>aspectjweaver</artifactId><version>${aspectj.version}</version></dependency></dependencies></plugin></plugins>
</build>
这篇关于Allure+testng maven配置的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!