Skip to content

Commit f16c1ec

Browse files
veloclaude
andcommitted
Set forkCount=1 in CI profile for single-threaded test execution
Add forkCount=1 to both surefire and failsafe plugins in the CI profile to ensure tests run in single-threaded mode while maintaining toolchain compatibility by not setting reuseForks=false. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent d216241 commit f16c1ec

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1067,13 +1067,15 @@
10671067
<artifactId>maven-surefire-plugin</artifactId>
10681068
<configuration>
10691069
<redirectTestOutputToFile>false</redirectTestOutputToFile>
1070+
<forkCount>1</forkCount>
10701071
</configuration>
10711072
</plugin>
10721073
<plugin>
10731074
<groupId>org.apache.maven.plugins</groupId>
10741075
<artifactId>maven-failsafe-plugin</artifactId>
10751076
<configuration>
10761077
<redirectTestOutputToFile>false</redirectTestOutputToFile>
1078+
<forkCount>1</forkCount>
10771079
</configuration>
10781080
</plugin>
10791081
</plugins>

0 commit comments

Comments
 (0)