有办法控制Surefire插件的Report吗?

问题描述 投票:0回答:2

如果我们不想生成它,是否可以控制 Maven 项目(目标文件夹)列出的文件夹?

其中一个名为“surefire-reports”的项目来自“maven-surefire-plugin”,我们可以通过配置来控制它吗?如果我们不想生成这些。

POM.XML:

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.22.0</version>
                <configuration>
                     <suiteXmlFiles> 
                         <suiteXmlFile>testng.xml</suiteXmlFile> 
                     </suiteXmlFiles>                       
                </configuration>
            </plugin>
        </plugins>
    </build>
maven selenium selenium-webdriver maven-3 pom.xml
2个回答
0
投票

跳过Surefire报告:

如果设置为 true,则将跳过 Surefire 报告生成。

  1. 类型:布尔值

  2. 必填:否

  3. 用户属性:skipSurefireReport

  4. 默认:假

https://maven.apache.org/surefire/maven-surefire-report-plugin/report-mojo.html#skipSurefireReport.

跳过Surefire测试:

目标:

mvn clean verify -DskipTests=true

按照上述目标尝试使用此代码

 <properties>
            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
            <maven.compiler.source>1.8</maven.compiler.source>
            <maven.compiler.target>1.8</maven.compiler.target>
        </properties>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>2.22.0</version>
                    <configuration>
                   <skip.surefire.tests>${skipTests}</skip.surefire.tests>
                    </configuration>
                </plugin>
            </plugins>
        </build>

此代码将跳过肯定的测试。

使用 TestNG 和 Sure-fire 插件跳过报告生成

防止 Maven 中的单元测试,但允许集成测试


0
投票

这取决于插件的版本。

我的评论是针对最新版本 3.2.5:

文档 IMO 不清楚,以下是我最终停止生成 xml 和 txt 报告的方法:

-DdisableXmlReport=true -Dsurefire.useFile=false

(或者您可以将这些参数放入 pom.xml 中的属性中)

© www.soinside.com 2019 - 2024. All rights reserved.