Skip to content

Commit

Permalink
[UT] explicitly ignore surefire maven tests failures in fe-common and…
Browse files Browse the repository at this point in the history
… hive-udf (backport StarRocks#54442) (StarRocks#54453)

Signed-off-by: Kevin Xiaohua Cai <[email protected]>
Co-authored-by: Kevin Cai <[email protected]>
  • Loading branch information
2 people authored and lijinbin committed Jan 6, 2025
1 parent 234a2b1 commit 8b3f7cc
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions fe/fe-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ under the License.

<properties>
<starrocks.home>${basedir}/../../</starrocks.home>
<!-- There is no unit tests for this project, ignore the error if no case found -->
<failIfNoSpecifiedTests>false</failIfNoSpecifiedTests>
</properties>

<build>
Expand Down Expand Up @@ -70,6 +72,13 @@ under the License.
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<failIfNoSpecifiedTests>${failIfNoSpecifiedTests}</failIfNoSpecifiedTests>
</configuration>
</plugin>
</plugins>
</build>
</project>
9 changes: 9 additions & 0 deletions fe/hive-udf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<!-- There is no unit tests for this project, ignore the error if no case found -->
<failIfNoSpecifiedTests>false</failIfNoSpecifiedTests>
</properties>

<build>
Expand Down Expand Up @@ -75,6 +77,13 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<failIfNoSpecifiedTests>${failIfNoSpecifiedTests}</failIfNoSpecifiedTests>
</configuration>
</plugin>
</plugins>

<pluginManagement>
Expand Down

0 comments on commit 8b3f7cc

Please sign in to comment.