Skip to content

Commit

Permalink
enable running causal clustering tests in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
lassewesth committed Jun 29, 2017
1 parent a6d1a4d commit 3367125
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions enterprise/causal-clustering/pom.xml
Expand Up @@ -242,4 +242,24 @@
</properties>
</profile>
</profiles>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<forkCount>4</forkCount>
<parallel>classes</parallel>
<threadCount>4</threadCount>
<!-- slowest test class takes up to 10 minutes, so let's cater for that, with contingency -->
<parallelTestsTimeoutInSeconds>1200</parallelTestsTimeoutInSeconds>
<parallelTestsTimeoutForcedInSeconds>1800</parallelTestsTimeoutForcedInSeconds>
<workingDirectory>${project.build.directory}/FORK_DIRECTORY_${surefire.forkNumber}</workingDirectory>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 3367125

Please sign in to comment.