You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2022/04/06 05:08:08 UTC

[iotdb] branch master updated: Fix -DskipTests cannot skip commons tests (#5422)

This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new 0296d2cf9d Fix -DskipTests cannot skip commons tests (#5422)
0296d2cf9d is described below

commit 0296d2cf9dcfe2caea3769c055d7c4dec88c9aeb
Author: Haonan <hh...@outlook.com>
AuthorDate: Wed Apr 6 13:08:02 2022 +0800

    Fix -DskipTests cannot skip commons tests (#5422)
---
 node-commons/pom.xml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/node-commons/pom.xml b/node-commons/pom.xml
index fbe4599b8e..3997cc6c00 100644
--- a/node-commons/pom.xml
+++ b/node-commons/pom.xml
@@ -121,7 +121,7 @@
     </build>
     <profiles>
         <profile>
-            <id>skipTsfileTests</id>
+            <id>skipCommonsTests</id>
             <activation>
                 <property>
                     <name>skipTests</name>
@@ -129,13 +129,13 @@
                 </property>
             </activation>
             <properties>
-                <tsfile.test.skip>true</tsfile.test.skip>
-                <tsfile.ut.skip>true</tsfile.ut.skip>
-                <tsfile.it.skip>true</tsfile.it.skip>
+                <commons.test.skip>true</commons.test.skip>
+                <commons.ut.skip>true</commons.ut.skip>
+                <commons.it.skip>true</commons.it.skip>
             </properties>
         </profile>
         <profile>
-            <id>skipUT_TsFileTests</id>
+            <id>skipUT_CommonsTests</id>
             <activation>
                 <property>
                     <name>skipUTs</name>
@@ -143,7 +143,7 @@
                 </property>
             </activation>
             <properties>
-                <tsfile.ut.skip>true</tsfile.ut.skip>
+                <commons.ut.skip>true</commons.ut.skip>
             </properties>
         </profile>
         <profile>