Skip to content

Commit

Permalink
Skip test in tf predictor.
Browse files Browse the repository at this point in the history
  • Loading branch information
shaomengwang committed Nov 26, 2021
1 parent 6b56a7c commit c44ad7d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 21 additions & 1 deletion dl_predictors/predictor-tf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
</dependency>
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-test-utils_2.11</artifactId>
<artifactId>flink-test-utils_${alink.scala.major.version}</artifactId>
<version>${flink.version}</version>
<scope>test</scope>
</dependency>
Expand All @@ -86,6 +86,18 @@
<version>${flink.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-table-api-java-bridge_${alink.scala.major.version}</artifactId>
<version>${flink.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-table-planner_${alink.scala.major.version}</artifactId>
<version>${flink.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand All @@ -99,6 +111,14 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
<configuration>
<skipTests>${skip.tf.predictor.ut}</skipTests>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down
2 changes: 2 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@
<slf4j.version>1.7.15</slf4j.version>
<log4j.version>2.12.1</log4j.version>
<netlib.java.version>1.1.2</netlib.java.version>
<skip.tf.predictor.ut>true</skip.tf.predictor.ut>
<maven.surefire.plugin.version>2.22.0</maven.surefire.plugin.version>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit c44ad7d

Please sign in to comment.