You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by hx...@apache.org on 2019/02/14 06:54:37 UTC

[incubator-iotdb] branch master updated: add to skip all UTs: maven integration-test -DskipUTS=true (#47)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 50c7325  add  to skip all UTs: maven integration-test -DskipUTS=true (#47)
50c7325 is described below

commit 50c73257c5872a1259f7e3bcab8caefd4c454639
Author: Xiangdong Huang <hx...@qq.com>
AuthorDate: Thu Feb 14 14:54:33 2019 +0800

    add  to skip all UTs: maven integration-test -DskipUTS=true (#47)
    
    * add  to skip all UTs: maven integration-test -DskipUTS=true
    
    * change the profile of skipUT_IoTDBTests to skipUT_IoTDB_Tests
---
 grafana/pom.xml     | 12 ++++++++++++
 iotdb-cli/pom.xml   | 12 ++++++++++++
 iotdb/pom.xml       | 14 +++++++++++++-
 jdbc/pom.xml        | 12 ++++++++++++
 service-rpc/pom.xml | 12 ++++++++++++
 tsfile/pom.xml      | 12 ++++++++++++
 6 files changed, 73 insertions(+), 1 deletion(-)

diff --git a/grafana/pom.xml b/grafana/pom.xml
index b6a6251..ed1bef7 100644
--- a/grafana/pom.xml
+++ b/grafana/pom.xml
@@ -231,5 +231,17 @@
                 <grafana.it.skip>true</grafana.it.skip>
             </properties>
         </profile>
+        <profile>
+            <id>skipUT_GrafanaTests</id>
+            <activation>
+                <property>
+                    <name>skipUTs</name>
+                    <value>true</value>
+                </property>
+            </activation>
+            <properties>
+                <grafana.ut.skip>true</grafana.ut.skip>
+            </properties>
+        </profile>
     </profiles>
 </project>
diff --git a/iotdb-cli/pom.xml b/iotdb-cli/pom.xml
index e798058..6977892 100644
--- a/iotdb-cli/pom.xml
+++ b/iotdb-cli/pom.xml
@@ -142,5 +142,17 @@
                 <cli.it.skip>true</cli.it.skip>
             </properties>
         </profile>
+        <profile>
+            <id>skipUT_CliTests</id>
+            <activation>
+                <property>
+                    <name>skipUTs</name>
+                    <value>true</value>
+                </property>
+            </activation>
+            <properties>
+                <cli.ut.skip>true</cli.ut.skip>
+            </properties>
+        </profile>
     </profiles>
 </project>
diff --git a/iotdb/pom.xml b/iotdb/pom.xml
index d138ecf..7ff37e9 100644
--- a/iotdb/pom.xml
+++ b/iotdb/pom.xml
@@ -186,7 +186,7 @@
     </build>
     <profiles>
         <profile>
-            <id>skipTsfileTests</id>
+            <id>skipIoTDBTests</id>
             <activation>
                 <property>
                     <name>skipTests</name>
@@ -199,5 +199,17 @@
                 <iotdb.it.skip>true</iotdb.it.skip>
             </properties>
         </profile>
+        <profile>
+            <id>skipUT_IoTDB_Tests</id>
+            <activation>
+                <property>
+                    <name>skipUTs</name>
+                    <value>true</value>
+                </property>
+            </activation>
+            <properties>
+                <iotdb.ut.skip>true</iotdb.ut.skip>
+            </properties>
+        </profile>
     </profiles>
 </project>
diff --git a/jdbc/pom.xml b/jdbc/pom.xml
index 7fd8416..173b27e 100644
--- a/jdbc/pom.xml
+++ b/jdbc/pom.xml
@@ -161,5 +161,17 @@
                 <jdbc.it.skip>true</jdbc.it.skip>
             </properties>
         </profile>
+        <profile>
+            <id>skipUT_JDBC_Tests</id>
+            <activation>
+                <property>
+                    <name>skipUTs</name>
+                    <value>true</value>
+                </property>
+            </activation>
+            <properties>
+                <jdbc.ut.skip>true</jdbc.ut.skip>
+            </properties>
+        </profile>
     </profiles>
 </project>
diff --git a/service-rpc/pom.xml b/service-rpc/pom.xml
index c5097ec..7bb49c0 100644
--- a/service-rpc/pom.xml
+++ b/service-rpc/pom.xml
@@ -140,5 +140,17 @@
                 <rpc.it.skip>true</rpc.it.skip>
             </properties>
         </profile>
+        <profile>
+            <id>skipUT_ServiceRPC_Tests</id>
+            <activation>
+                <property>
+                    <name>skipUTs</name>
+                    <value>true</value>
+                </property>
+            </activation>
+            <properties>
+                <rpc.ut.skip>true</rpc.ut.skip>
+            </properties>
+        </profile>
     </profiles>
 </project>
diff --git a/tsfile/pom.xml b/tsfile/pom.xml
index 28de2fc..152b721 100644
--- a/tsfile/pom.xml
+++ b/tsfile/pom.xml
@@ -143,5 +143,17 @@
                 <tsfile.it.skip>true</tsfile.it.skip>
             </properties>
         </profile>
+        <profile>
+            <id>skipUT_TsFileTests</id>
+            <activation>
+                <property>
+                    <name>skipUTs</name>
+                    <value>true</value>
+                </property>
+            </activation>
+            <properties>
+                <tsfile.ut.skip>true</tsfile.ut.skip>
+            </properties>
+        </profile>
     </profiles>
 </project>