集成测试失败时跳过集成后测试执行

时间:2018-03-20 14:16:31

标签: maven integration-testing

当集成测试未能检查失败原因时,我想跳过post-integration-test执行。目前,我有exec-maven-plugin的以下配置:

<execution>
    <id>docker-compose down</id>
    <phase>post-integration-test</phase>
    <goals>
        <goal>exec</goal>
    </goals>
    <configuration>
        <executable>${docker.src}/stop_docker_compose.sh</executable>
    </configuration>
</execution>

0 个答案:

没有答案