ChatGPT解决这个技术问题 Extra ChatGPT

maven: How can I skip test in some projects via command line options?

In my maven project I have a number of modules. Is it possible to turn off running unit test for some modules via command line options?

My project takes about 15 mins to run through all unit tests. I would like to speed up the overall build by running just the unit tests in the module I am working on. I do not want to go in and edit each individual pom.xml to achieve this.

I have tried a solution outlined here: Can I run a specific testng test group via maven? However the result is a lot of test failures in modules that I want to skip. I suppose 'group' is not the same concept of module?

It's very annoying that the maven developers expect you do use pom.xml instead of command line options. And 95% of Stack Overflow answers keep giving pom.xml solutions.
mvn clean install -DskipTests

E
Emmanuel Bourg

To toggle unit tests on and off for an entire project use Maven Surefire Plugin's capability of skipping tests. There is a drawback with using skipTests from the command line. In a multi-module build scenario, this would disable all tests across all modules.

If you need more fine grain control of running a subset of tests for a module, look into using the Maven Surefire Plugin's test inclusion and exclusion capabilities.

To allow for command-line overrides, make use of POM properties when configuring the Surefire Plugin. Take for example the following POM segment:

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.9</version>
        <configuration>
          <excludes>
            <exclude>${someModule.test.excludes}</exclude>
          </excludes>
          <includes>
            <include>${someModule.test.includes}</include>
          </includes>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <properties>
    <someModule.skip.tests>false</someModule.skip.tests>
    <skipTests>${someModule.skip.tests}</skipTests>
    <someModule.test.includes>**/*Test.java</someModule.test.includes>
    <someModule.test.excludes>**/*Test.java.bogus</someModule.test.excludes>
  </properties>

With a POM like the above you can execute tests in a variety of ways.

Run all tests (the above configuration includes all **/*Test.java test source files)

mvn test

Skip all tests across all modules

mvn -DskipTests=true test

Skip all tests for a particular module

mvn -DsomeModule.skip.tests=true test

Only run certain tests for a particular module (this example includes all **/*IncludeTest.java test source files)

mvn -DsomeModule.test.includes="**/*IncludeTest.java" test

Exclude certain tests for a particular module (this example excludes all **/*ExcludeTest.java source files)

mvn -DsomeModule.test.excludes="**/*ExcludeTest.java" test


I think you're missing a double-quote after ExcludeTest.java
@Sridhar-Sarnobat thanks. the answer has been updated.
Is <skipTests>${module.skip.tests}</skipTests> supposed to be <skipTests>${someModule.skip.tests}</skipTests>?
R
Ralf

…and if you like to pass the parameter to maven release plugin in Hudson/Jenkins you have to use -Darguments=-DskipTests to get it work.


a
akostadinov

Found a way to exclude on command line:

# Exclude one test class, by using the explanation mark (!)
mvn test -Dtest=!LegacyTest
# Exclude one test method 
mvn verify -Dtest=!LegacyTest#testFoo
# Exclude two test methods
mvn verify -Dtest=!LegacyTest#testFoo+testBar
# Exclude a package with a wildcard (*)
mvn test -Dtest=!com.mycompany.app.Legacy*

This is from: https://blog.jdriven.com/2017/10/run-one-or-exclude-one-test-with-maven/


@Arjun, which ones? I used some of these at the time, not sure if I tried everything.
# Exclude one test class, by using the explanation mark (!) mvn test -Dtest=!LegacyTest
@Arjun, IIRC I used 'Exclude one test method`. But please tell what worked and what didn't for you. Would be useful for other users.
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ ot_osefalf_automation_test --- [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] - [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test (default-test) on project ot_osefalf_automation_test: No tests were executed! (Set -DfailIfNoTests=false to ignore this error.) -> [Help 1]
from command line with \! mvn test -Dtest=\!LegacyTest
C
Community

If you want to use Maven profiles:

http://maven.apache.org/guides/introduction/introduction-to-profiles.html

you might want to make it work doing something like this:

Skipping tests in some modules in Maven

I don't know if there is a supported command line option that does the same.

You also might try using environment properties directly, something as per this doc page:

http://maven.apache.org/plugins/maven-surefire-plugin/examples/skipping-test.html

i.e. something like:

  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.12</version>
    <configuration>
      <skipTests>${moduleA.skipTests}</skipTests>
    </configuration>
  </plugin>

then using mvn -DmoduleA.skipTests=false test to test that one module.