Search code examples
mavenjunitquickbuild

Running all tests with Quickbuild


I have experience with Jenkins and I am used to that, that it runs all tests through no matter if a test is failing. At the end I have a complete list of failed tests including all Maven submodules.

Is it possible to reach the same behaviour with Quickbuild?


Solution

  • In maven world quickbuild seems to do nothing special. It just uses the default behaviour of maven. As soon as there is a test failure, the multi-module project build will stop at the current module.

    If you want to build everything, you have to add this to your command:

    -Dmaven.test.failure.ignore=true
    

    This way all modules will be built, still quickbuild will find the failed tests in the reports.