pom.xml
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins
</groupId> <artifactId>maven-surefire-plugin
</artifactId> <configuration> <!-- 此值为true则忽略测试中的构建错误 --> <testFailureIgnore>true
</testFailureIgnore> <!-- 此值为true则不执行单元测试 --> <skip>true
</skip> </configuration> </plugin> </plugins> </build>
surefire:testSurefire 插件的 test 目标绑定到了 test 阶段。这个目标运行所有的测试并且创建那些捕捉详细测试结果的输出文件。默认情况下,如果有测试失败,这个目标会终止。
转载请注明原文地址: https://ibbs.8miu.com/read-2235627.html