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 (#54442)

Signed-off-by: Kevin Xiaohua Cai <[email protected]>
  • Loading branch information
kevincai authored Dec 27, 2024
1 parent f977337 commit a105bac
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 @@ -39,6 +39,8 @@ under the License.
<maven.compiler.target>8</maven.compiler.target>
<maven.compiler.release>8</maven.compiler.release>
<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 @@ -73,6 +75,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 @@ -35,6 +35,8 @@
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<maven.compiler.release>8</maven.compiler.release>
<!-- There is no unit tests for this project, ignore the error if no case found -->
<failIfNoSpecifiedTests>false</failIfNoSpecifiedTests>
</properties>

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

Expand Down

0 comments on commit a105bac

Please sign in to comment.