我有一个 Maven 项目,它有一个名为“BlahITCase”的集成测试。此测试当前失败,进而导致“mvn install”失败。这是预期的行为吗?我的理解是单元测试(surefire)失败会导致构建失败,但集成测试(使用故障保护)失败不会。
我的 pom 的构建插件部分有以下内容:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.12.3</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
注释掉验证目标似乎给了我想要的行为。