What are the techniques to improve the time taken for a Grails project to build and run its unit tests? For example, does Grails have an equivalent to the Maven 3 parallel build feature?
I am currently using Grails to build my application (not Gradle, etc), with Spock tests, being driven by Jenkins. I found a script to parallelize unit and integration tests, but I'm looking for more.
Here are some related issues:
- Integration and unit tests in large Grails project
- How to do concurrent modification testing for grails application
- How to speed up grails test execution
UPDATE:
- I'd like to answer some of my own question: check out the Grails Partition Tests plugin (found link on Grails Test Recipes, which also looks like a great collection of information).