Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 Maven 构建使用带有 Surefire 插件的 JUnit 测试。如果测试失败,mvn install则将失败,这通常是可取的,但有时我们希望提前检查所有测试是否有未完全实现的功能。我们希望能够将某些测试指定为“已知失败”,这将记录它们的失败但不会停止构建。有没有办法做到这一点?
mvn install
(我知道我们可以设置testFailureIgnore为 true 不会在任何测试失败时失败,但我们仍然希望在“意外”测试失败时失败)
testFailureIgnore