提交 4ce2557d 编写于 作者: S shijinkui 提交者: Stephan Ewen

[FLINK-5640] [build] Configure the explicit Unit Test file suffix

This closes #3211
上级 1456f0a7
......@@ -965,6 +965,8 @@ under the License.
<compilerArgument>-Xlint:all</compilerArgument>
</configuration>
</plugin>
<!--surefire for unit tests and integration tests-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
......@@ -980,6 +982,7 @@ under the License.
<argLine>-Xms256m -Xmx800m -Dmvn.forkNumber=${surefire.forkNumber} -XX:-UseGCOverheadLimit</argLine>
</configuration>
<executions>
<!--execute all the unit tests-->
<execution>
<id>default-test</id>
<phase>test</phase>
......@@ -987,12 +990,16 @@ under the License.
<goal>test</goal>
</goals>
<configuration>
<includes>
<include>**/*Test.*</include>
</includes>
<excludes>
<exclude>**/*ITCase.*</exclude>
<exclude>${flink-fast-tests-pattern}</exclude>
</excludes>
</configuration>
</execution>
<!--execute all the integration tests-->
<execution>
<id>integration-tests</id>
<phase>integration-test</phase>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册