Parallellizing the tests to reduce the total running time
----------------------------------------------------------
Key: OOZIE-784
URL: https://issues.apache.org/jira/browse/OOZIE-784
Project: Oozie
Issue Type: Bug
Reporter: Virag Kothari
With Junit4, maven plugin can be configured to run tests in parallel. This may
reduce the time to run the testcases on the build server.
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.7.1</version>
<configuration>
<parallel>classes/methods</parallel>
<threadCount>5</threadCount>
<perCoreThreadCount>2</perCoreThreadCount>
</configuration>
</plugin>
</plugins>
</build>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira