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:16 UTC

[iotdb] branch fix_commons_skip_tests created (now 1393330bec)

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

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


      at 1393330bec Fix -DskipTests cannot skip commons tests

This branch includes the following new commits:

     new 1393330bec Fix -DskipTests cannot skip commons tests

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by ha...@apache.org.
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>