Sometimes, it’s handy to be able to continue you’re maven build even when the tests have failed, for example to want to see some generated reports.
You get maven to ignore test failure by setting this property on the command line
mvn test -Dmaven.test.failure.ignore=true
