Skip to content

Commit

Permalink
Merge pull request #94 from rahulsom/parallelize-tests
Browse files Browse the repository at this point in the history
chore: Parallelize Tests
  • Loading branch information
tzachs authored Jul 17, 2023
2 parents dfe58b2 + ecc3847 commit 448d0f6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,5 +100,18 @@
</dependency>

</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkCount>1C</forkCount>
<parallel>all</parallel>
<useUnlimitedThreads>true</useUnlimitedThreads>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 448d0f6

Please sign in to comment.