有没有办法在maven中只跳过一次测试?

时间:2009-05-07 16:26:52

标签: maven-2 surefire

我想在启动mvn install时跳过一次测试。

有办法吗?

6 个答案:

答案 0 :(得分:39)

您可以为-Dtest选项指定排除模式,方法是在其前面添加!(感叹号)。如,

mvn -Dtest=\!FlakyTest* install

here找到它并经过验证可行。例如,我能够通过使用:

跳过this片状Jenkins测试
mvn -Dtest=\!CronTabTest* package

答案 1 :(得分:19)

使用junit 4时,我想添加一个@Ignore注释。这对你有用,除非你有时只想忽略测试,或者只在构建从maven运行时忽略它。如果是这种情况,那么我会问“为什么?”

测试应该保持一致, 应该是可移植的,而 应始终通过。如果特定测试存在问题,我会考虑重新编写,完全删除它,或将其移动到不同的测试套件或项目。

答案 2 :(得分:7)

通常需要排除集成测试,但需要包含单元测试。 为了实现这一点,我建议使用postfix 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

PS要排除单个测试,您只需在排除列表中明确命名。容易。

答案 3 :(得分:6)

使用@Category注释

查看this solution
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 {}

您也可以使用maven包含(groups)/ exclude(excludedGroups)这些测试例如:

mvn -DexcludedGroups=com.mycompany.tests.IntegrationTests test

答案 4 :(得分:4)

我认为如果使用此命令,这应该有效:

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");
    }
}

答案 5 :(得分:0)

如果要使用CLI排除一个测试,则应使用-Dtest-Dit.test标志。

请小心重设默认设置。使用!表示法时,所有默认值都将被删除,应将它们放回原处。对于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='!ITsometestIT, IT*, *IT, *ITCase'

完整的mvn命令可以是以下命令:

mvn -e -B -Dtest='!unitTestABC, *Test, Test*, *Tests, *TestCase' -Dit.test='!ITintegrationTestABCIT, IT*, *IT, *ITCase' -DfailIfNoTests=false clean install

请记住使用'而不是"。使用双引号时,其中的任何!都将由bash求值。

还请记住,mvn test时不会运行集成测试。使用mvn verify时,将仅运行集成测试,而不运行单元测试