Software Reuse Quick Tip #32
Tip #32 – Fail the build when there is a test failure
Systematic reuse needs automated tests – lots of them. Ensure that your continuous builds don’t continue running when they encounter a failing test. If you are using Maven, you can use the surefire plugin configuration as shown below:
[...] org.apache.maven.plugins maven-surefire-plugin false [...]
View On WordPress









