Skip to content

Commit d78ae20

Browse files
yuxiqianqwencoder
andcommitted
[ci][hotfix] Enable parallel execution for pipeline-e2e tests
Change forkCount from 1 to 2 to enable parallel test execution. This should reduce the total test time from ~80 minutes to ~40-50 minutes. Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
1 parent bcb4a4b commit d78ae20

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

flink-cdc-e2e-tests/flink-cdc-pipeline-e2e-tests/pom.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,9 @@ limitations under the License.
444444
<excludes>
445445
<exclude>**/MysqlE2eWithYarnApplicationITCase.java</exclude>
446446
</excludes>
447-
<forkCount>1</forkCount>
447+
<!-- Use fixed parallelism of 2 for e2e tests -->
448+
<forkCount>2</forkCount>
449+
<reuseForks>false</reuseForks>
448450
<systemPropertyVariables>
449451
<moduleDir>${project.basedir}</moduleDir>
450452
</systemPropertyVariables>

0 commit comments

Comments
 (0)