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 03:54:17 UTC

[iotdb] 01/01: Fix -DskipTests cannot skip commons tests

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

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

commit 1393330bec641ee5b9a8fa0d605787adcb16baa4
Author: HTHou <hh...@outlook.com>
AuthorDate: Wed Apr 6 11:53:50 2022 +0800

    Fix -DskipTests cannot skip commons tests
---
 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>