当集成测试未能检查失败原因时,我想跳过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>