Skip to content

Commit 448d0f6

Browse files
authored
Merge pull request #94 from rahulsom/parallelize-tests
chore: Parallelize Tests
2 parents dfe58b2 + ecc3847 commit 448d0f6

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,5 +100,18 @@
100100
</dependency>
101101

102102
</dependencies>
103+
<build>
104+
<plugins>
105+
<plugin>
106+
<groupId>org.apache.maven.plugins</groupId>
107+
<artifactId>maven-surefire-plugin</artifactId>
108+
<configuration>
109+
<forkCount>1C</forkCount>
110+
<parallel>all</parallel>
111+
<useUnlimitedThreads>true</useUnlimitedThreads>
112+
</configuration>
113+
</plugin>
114+
</plugins>
115+
</build>
103116

104117
</project>

0 commit comments

Comments
 (0)