This is an automated email from the ASF dual-hosted git repository. kunni pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink-cdc.git
The following commit(s) were added to refs/heads/master by this push: new 332ec71b6 [FLINK-38156][hotfix] Fix pipeline E2E tests. (#4068) 332ec71b6 is described below commit 332ec71b681ef831cc1c0f0c0c52390ab5c2495d Author: Kunni <decq12y...@gmail.com> AuthorDate: Wed Jul 30 14:54:37 2025 +0800 [FLINK-38156][hotfix] Fix pipeline E2E tests. (#4068) --- flink-cdc-e2e-tests/flink-cdc-pipeline-e2e-tests/pom.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/flink-cdc-e2e-tests/flink-cdc-pipeline-e2e-tests/pom.xml b/flink-cdc-e2e-tests/flink-cdc-pipeline-e2e-tests/pom.xml index 3f577e83b..1052510b8 100644 --- a/flink-cdc-e2e-tests/flink-cdc-pipeline-e2e-tests/pom.xml +++ b/flink-cdc-e2e-tests/flink-cdc-pipeline-e2e-tests/pom.xml @@ -370,12 +370,27 @@ limitations under the License. <includes> <include>**/*.*</include> </includes> + <excludes> + <exclude>**/MysqlE2eWithYarnApplicationITCase.java</exclude> + </excludes> <forkCount>1</forkCount> <systemPropertyVariables> <moduleDir>${project.basedir}</moduleDir> </systemPropertyVariables> </configuration> </execution> + <execution> + <id>run-last-test</id> + <phase>integration-test</phase> + <goals> + <goal>test</goal> + </goals> + <configuration> + <includes> + <include>**/MysqlE2eWithYarnApplicationITCase.java</include> + </includes> + </configuration> + </execution> </executions> </plugin> <plugin>