Skip to content

Commit

Permalink
Merge pull request #932 from rahulsom/parallelize-tests
Browse files Browse the repository at this point in the history
chore: Parallelize Tests
  • Loading branch information
uhafner authored Jul 16, 2023
2 parents 98d6c78 + 848f6ce commit ede6ea0
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>
Expand Down Expand Up @@ -477,6 +476,15 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<parallel>all</parallel>
<useUnlimitedThreads>true</useUnlimitedThreads>
<forkCount>1C</forkCount>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit ede6ea0

Please sign in to comment.