You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ja...@apache.org on 2019/08/02 09:55:34 UTC

[flink] branch release-1.9 updated: [FLINK-13543][table-planner-blink] Enable reuse forks for integration tests in blink planner

This is an automated email from the ASF dual-hosted git repository.

jark pushed a commit to branch release-1.9
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.9 by this push:
     new d7b7294  [FLINK-13543][table-planner-blink] Enable reuse forks for integration tests in blink planner
d7b7294 is described below

commit d7b729439639547e4b447cc837e956bba199129c
Author: Jark Wu <im...@gmail.com>
AuthorDate: Fri Aug 2 10:35:45 2019 +0800

    [FLINK-13543][table-planner-blink] Enable reuse forks for integration tests in blink planner
    
    This closes #9326
---
 flink-table/flink-table-planner-blink/pom.xml | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/flink-table/flink-table-planner-blink/pom.xml b/flink-table/flink-table-planner-blink/pom.xml
index 4f71191..c3aa1ef 100644
--- a/flink-table/flink-table-planner-blink/pom.xml
+++ b/flink-table/flink-table-planner-blink/pom.xml
@@ -400,6 +400,27 @@ under the License.
 					</execution>
 				</executions>
 			</plugin>
+
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-surefire-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>integration-tests</id>
+						<phase>integration-test</phase>
+						<goals>
+							<goal>test</goal>
+						</goals>
+						<configuration>
+							<includes>
+								<include>**/*ITCase.*</include>
+							</includes>
+							<!-- override reuseForks to true to reduce testing time -->
+							<reuseForks>true</reuseForks>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
 		</plugins>
 	</build>
 </project>