Как использовать параметр "-Dsurefire.skipAfterFailureCount = 1", чтобы пропустить тесты после первого сбоя - PullRequest
0 голосов
/ 15 октября 2019

У меня есть тестовый проект Maven. В котором я использую контекстные тесты. Я использую maven-surefire-plugin для запуска тестов. Мне нужно, чтобы тест остановился после первого неудачного теста. Я нашел способ сделать это через -Dsurefire.skipAfterFailureCount = 1, но он не работает. Может я что то не так делаю? Ниже мой pom.xml:

    <properties>
        <selenide.version>5.3.0</selenide.version>
        <junit.jupiter.version>5.5.1</junit.jupiter.version>
        <selenium.java.version>3.141.59</selenium.java.version>
        <allure.junit5.version>2.12.1</allure.junit5.version>
        <aspectj.version>1.8.10</aspectj.version>
        <maven.surefire.plugin.version>3.0.0-M3</maven.surefire.plugin.version>
        <junit.platform.launcher>1.5.2</junit.platform.launcher>
        <junit.jupiter.engine>5.5.2</junit.jupiter.engine>
        <junit.vintage.engine>5.5.2</junit.vintage.engine>
        <allure.maven.version>2.10.0</allure.maven.version>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    </properties>

    <build>
        <plugins>
            <plugin>

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

                <configuration>

                    <argLine>-javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar"
                    -Dsurefire.skipAfterFailureCount=1
                    </argLine>

                    <systemProperties>

                        <property>

                            <name>allure.results.directory</name>
                            <value>${project.build.directory}/allure-results</value>
                        </property>

                    </systemProperties>

                </configuration>

            </plugin>
        </plugins>
    </build>

Также я попробовал эту опцию:

    <build>
        <plugins>
            <plugin>

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

                <configuration>
                    <skipAfterFailureCount>1</skipAfterFailureCount>
                    <argLine>-javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar"</argLine>

                    <systemProperties>

                        <property>

                            <name>allure.results.directory</name>
                            <value>${project.build.directory}/allure-results</value>
                        </property>

                    </systemProperties>

                </configuration>

            </plugin>
        </plugins>
    </build>

Кто-нибудь знает, как решить эту проблему? Почему мой код не работает? Я где-то ошибся?

...