Skip to content

Commit c5c4b63

Browse files
veloclaude
andcommitted
Configure CI profile to run tests in single-threaded mode
Add forkCount=1 and reuseForks=false to both surefire and failsafe plugins in the ci profile to ensure tests run sequentially and avoid resource contention issues in CI environment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 97c1302 commit c5c4b63

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1074,13 +1074,17 @@
10741074
<artifactId>maven-surefire-plugin</artifactId>
10751075
<configuration>
10761076
<redirectTestOutputToFile>false</redirectTestOutputToFile>
1077+
<forkCount>1</forkCount>
1078+
<reuseForks>false</reuseForks>
10771079
</configuration>
10781080
</plugin>
10791081
<plugin>
10801082
<groupId>org.apache.maven.plugins</groupId>
10811083
<artifactId>maven-failsafe-plugin</artifactId>
10821084
<configuration>
10831085
<redirectTestOutputToFile>false</redirectTestOutputToFile>
1086+
<forkCount>1</forkCount>
1087+
<reuseForks>false</reuseForks>
10841088
</configuration>
10851089
</plugin>
10861090
</plugins>

0 commit comments

Comments
 (0)