java项目在install、verify,test时出现There are test failures
解决方案:
- 如果直接向让它不报错,那直接添加以下配置就可以。但是这样的后果是错误的测试被忽略了
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
- 其实出现这种错误的原因是test错误了,我们去修改test直到修复(建议这种方案)