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:54:25 UTC

[flink] branch master 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 master
in repository https://gitbox.apache.org/repos/asf/flink.git


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

commit 391a7533109f1a6aeab9b7ae17e0e9af1a4cb1a9
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 04e5f71..bd6ce79 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>