jenkins+allure+testng

Posted yjh1995

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jenkins+allure+testng相关的知识,希望对你有一定的参考价值。

allure美化报告

1. maven添加配置

   <properties>
        <aspectj.version>1.8.10</aspectj.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>io.qameta.allure</groupId>
            <artifactId>allure-testng</artifactId>
            <version>2.6.0</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.9.10</version>
        </dependency>

        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>${aspectj.version}</version>
        </dependency>
    </dependencies>

    <build>
    <plugins>
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.11</version>
        <configuration>
            <!--设置参数命令行-->
            <argLine>
                -javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar"
            </argLine>
            <systemPropertyVariables>
                <!--是否忽略html,解释见下图。与之后在reportNg报告上显示截图相关。当前已经使用allure了,这里可以直接去掉啦-->
                <org.uncommons.reportng.escape-output>false</org.uncommons.reportng.escape-output>
            </systemPropertyVariables>
            <!--测试失败后,是否忽略并继续测试-->
            <testFailureIgnore>true</testFailureIgnore>
            <argLine>
                -Dfile.encoding=UTF-8
            </argLine>

            <suiteXmlFiles>
                <!--代表的是要执行的测试套件名称-->
                <!--
                <suiteXmlFile>src/test/java/test1.xml</suiteXmlFile>
                -->
            </suiteXmlFiles>

        </configuration>
        </plugin>
    </plugins>
    </build>

2. allure配置环境变量

3. Jenkins 添加 allure 插件

4. 使用Jenkins生成allure报告

技术图片

 

 

参考

https://www.cnblogs.com/clairejing/p/9755201.html

以上是关于jenkins+allure+testng的主要内容,如果未能解决你的问题,请参考以下文章

allure2 report+ jenkins 使用

与 Jenkins 的错误集成 Allure 报告。找不到 allure 命令行 <null>

使用AllureReport生成测试报告

Allure+testNG(一):手把手教你用Allure生成优美的测试报告

jenkins学习8-生成Allure报告(Allure Jenkins Plugin)

无法使用 testNG 和 Allure 从 TeamCity 中的 Maven 运行测试