我希望在启动 mvn install时只跳过一个测试。
mvn install
有办法吗?
在 junit4中,当我想这样做时,我会添加一个 @Ignore注释。这对您来说是可行的,除非您只想有时忽略测试,或者只在构建从 maven 运行时忽略它。如果是这样的话,我会问“为什么?”
@Ignore
测试 应该是一致的,他们是便携式的,他们总是通过 应该。如果某个特定的测试有问题,我会考虑重新编写它,完全删除它,或者将它移动到不同的测试套件或项目中。
我认为如果使用这个命令,这个应该可以工作:
mvn archetype:create -DgroupId=test -DartifactId=test
(将 pom.xml 和 test-class 测试更改为以下内容并使用 mvn install)
Pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>test</groupId> <artifactId>test</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>test</name> <url>http://maven.apache.org</url> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude> test/AppTest.java </exclude> </excludes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.5</version> <scope>test</scope> </dependency> </dependencies>
测试班:
package test; import org.junit.Test; import static org.junit.Assert.fail; public class AppTest { @Test public void test_it() { fail("not implemented"); } }
看一下使用 @Category注释的 这个解决方案
@Category
public class AccountTest { @Test @Category(IntegrationTests.class) public void thisTestWillTakeSomeTime() { ... } @Test @Category(IntegrationTests.class) public void thisTestWillTakeEvenLonger() { ... } @Test public void thisOneIsRealFast() { ... } }
然后使用测试套件运行:
@RunWith(Categories.class) @IncludeCategory(SlowTests.class) @SuiteClasses( { AccountTest.class, ClientTest.class }) public class LongRunningTestSuite {}
你也可以包括(groups)/排除(excludedGroups)这些测试,例如:
groups
excludedGroups
mvn -DexcludedGroups=com.mycompany.tests.IntegrationTests test
通常需要排除集成测试,但是需要包括单元测试。 为此,我建议使用后缀 IntegrationTest (例如 AbcIntegrationTest.java)命名所有集成测试。
然后在你的 Maven 版本中写下如下内容:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/*IntegrationTest.java</exclude> </excludes> </configuration> </plugin>
当您使用它构建时,所有的集成测试都将被排除在外, 但是运行所有其他测试(例如单元测试)
有关在测试运行期间排除和包含测试的更多信息,请阅读
Http://maven.apache.org/surefire/maven-surefire-plugin/examples/inclusion-exclusion.html
要排除一个单独的测试,您只需要在排除列表中显式命名它。
你可以在 -Dtest选项前面加上一个 !(叹号)来指定一个排除模式,
-Dtest
!
mvn -Dtest=\!FlakyTest* install
在 给你里找到的,确认有效。例如,我能够跳过 这个片状詹金斯测试使用:
mvn -Dtest=\!CronTabTest* package
如果要使用 CLI 排除一个测试,应该使用 -Dtest和 -Dit.test标志。
-Dit.test
小心重置默认值。当您使用 !表示法时,所有的默认值都被擦除,您应该将它们放回原处。对于由 surefire执行的普通测试,您应该添加 *Test, Test*, *Tests, *TestCase,而对于由 failsafe执行的集成测试,您应该添加 IT*, *IT, *ITCase。
surefire
*Test, Test*, *Tests, *TestCase
failsafe
IT*, *IT, *ITCase
你可以在这里找到更多的信息 https://maven.apache.org/surefire/maven-surefire-plugin/examples/inclusion-exclusion.html(正常测试)
这里是 https://maven.apache.org/surefire/maven-failsafe-plugin/examples/inclusion-exclusion.html(集成测试)
- Dit.test =’! ITsome testIT,IT * ,* IT,* ITCase’
完整的 mvn命令可以是这样的:
mvn
Mvn-e-B-Dtest =’! unitTestABC,* Test,Test * ,* TestCase,* TestCase’-Dit.Test =’! ITIntegrationTestABCIT,IT * ,* IT,* ITCase’-DfailIfNoTest = false clean install
记住使用 '和 NOT"。当使用双引号时,其中任何 !都将由 bash计算。
'
"
bash
还要记住,当 mvn test时不运行集成测试。对于 mvn verify,只运行集成测试,而不运行单元测试
mvn test
mvn verify