On Thu, Nov 12, 2015 at 10:07 AM, Kirill <[email protected]> wrote: > I have like 35 tests, and it takes approximately 9 minutes to execute them. > I want to reduce this time. I use the default Surefire settings, and if I > try to play around with forking options like advised on Surefire page
The default plugin parent POM already configures all this stuff (correctly AFAIK), and sets concurrency=2 by default. You can raise that if you need on the command line: mvn -Dconcurrency=10 test -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-dev/CANfRfr29nsteY65wnSpqXH4Yj%2BxBf1ETGmEk0Hd73AqUDDaFMg%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
