Is there a way to “fail fast” for junit with the maven surefire plugin?

后端 未结 7 1042
春和景丽
春和景丽 2020-11-28 08:39

I\'m currently working on a java project using maven. We use the maven surefire plugin to run our junit suite as part of the build process.

Our test suite is rapidl

相关标签:
7条回答
  • 2020-11-28 09:16

    This doesn't solve the question exactly, but the solution that my workplace ultimately came up with was to use Atlassian's Clover to run specialized builds of just tests pertaining to changed code.

    We have a Clover build that runs the tests for the changed code and in turn kicks off the full test build.

    This has proven to be a satisfactory solution.

    0 讨论(0)
提交回复
热议问题