Jenkins停止构建单元测试首次失败

时间:2016-09-16 15:02:10

标签: maven jenkins soapui

我在jenkins有一个maven工作。这个maven项目运行包含测试用例的soap项目。此maven项目的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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>src.main.resources</groupId>
<artifactId>soapui-maven2-plugin</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>Maven 2 soapUI Sample</name>
<url>http://maven.apache.org</url>
<pluginRepositories>
    <pluginRepository>
         <id>smartbear-sweden-plugin-repository</id>
    <url>http://www.soapui.org/repository/maven2/</url>
    </pluginRepository>
</pluginRepositories>
<build>
    <plugins>
        <plugin>
            <groupId>com.github.redfish4ktc.soapui</groupId>
            <artifactId>maven-soapui-extension-plugin</artifactId>
            <version>4.6.4.2</version>
            <configuration>
                <runnerType>OSS</runnerType>
                <projectFile>Dev-Offline-soapui-project.xml</projectFile>
                <junitReport>true</junitReport>
                <outputFolder>${project.build.directory}/tatunka-reports</outputFolder>
                <testSuite>SmokeTestSuite</testSuite>
                <testSuiteProperties>
                    <properties>
                        <property>serviceEndpoint=${serviceEndpoint}</property>
                    </properties>
                </testSuiteProperties>
                <skipAfterFailureCount>1</skipAfterFailureCount> 
            </configuration>
            <executions>
                <execution>
                <configuration>
                <junitReport>true</junitReport>
                </configuration>
                    <phase>test</phase>
                    <goals>
                        <goal>test</goal>
                    </goals>
                </execution>
            </executions>
            <dependencies>
                <dependency>
                    <groupId>com.smartbear.soapui</groupId>
                    <artifactId>soapui-maven-plugin</artifactId>
                    <version>5.1.0</version>
                </dependency>
            </dependencies>
        </plugin>   
    </plugins>
</build>

在jenkins中,目标和选项

的形式给出
test -DserviceEndpoint=http://localhost:8080/DAMService/solutionid -DskipTests=true

我想要的是如果任何测试用例失败,jenkins将停止运行其他测试用例。 例如,我有9个测试用例,第4个测试用例失败,那么剩下的5个测试用例不应该被执行。

我试着给

<skipAfterFailureCount>1</skipAfterFailureCount> 

但没有结果。 甚至尝试过给予 -DskipTests=true选项作为构建争论。 并且还尝试了目标verify。但无法实现阻止测试用例的运行。 如果需要更多信息,请告诉我。

1 个答案:

答案 0 :(得分:0)

在插件配置下添加<testFailureIgnore>true</testFailureIgnore>并尝试