zoukankan      html  css  js  c++  java
  • maven打包忽略测试用例

    忽略单元测试失败:

    $ mvn test -Dmaven.test.failure.ignore=true


    跳过单元测试:

    mvn install -Dmaven.test.skip=true

    跳过测试阶段:

    mvn package -DskipTests

    临时性跳过测试代码的编译:

    mvn package -Dmaven.test.skip=true

    maven.test.skip同时控制maven-compiler-plugin和maven-surefire-plugin两个插件的行为,即跳过编译,又跳过测试。

    指定测试类

    mvn test -Dtest=RandomGeneratorTest


    以Random开头,Test结尾的测试类

    mvn test -Dtest=Random*Test

    用逗号分隔指定多个测试用例

    mvn test -Dtest=ATest,BTest


    指定即使没有任何测试用例也不要报错


    test参数必须匹配至少一个测试类,否则会报错并导致构建失败。此时可使用以下配置来指定即使没有任何测试用例也不要报错。

    mvn test -Dtest -DfailIfNoTests = false


    POM文件配置包含与排除测试用例


    使用** / * Test.java 来匹配所有以Tests结尾的Java类。两个星号**用来匹配任意路径,一个星号*用来获取除路径风格符外的0个或多个字符。还可使用excludes来排除一些测试类。

    <plugin>  
        <groupId>org.apahce.maven.plugins<groupId>  
        <artifactId>maven-surefire-plugin</artifactId>  
        <version>2.5</version>  
        <configuration>  
            <includes>  
                <include>**/*Tests.java</include>  
            </includes>  
        </configuration>          
    </plugin>  
  • 相关阅读:
    php留言
    linux系统的初化始配置
    Alertmanager 配置解析
    Prometheus 配置解析
    Prometheus Consul 自动发现
    测试find 命令删除文件速度
    win10 安装wsl2 centos
    kubernetes api 的两种身份认证 以及kubectl生成kubeconfig
    Elasticsearch集群平滑下线data节点
    Fiddler Everywhere 安卓手机抓包配置
  • 原文地址:https://www.cnblogs.com/hwaggLee/p/4639539.html
Copyright © 2011-2022 走看看