HBASE-17569 HBase-Procedure module need to support mvn clean test -PskipProcedureTests to skip unit test (Yi Liang)
ADDENDUM Fix other places that are missing the skip command
This commit is contained in:
parent
81956aa446
commit
c5d6e166de
|
@ -154,10 +154,10 @@
|
|||
<profiles>
|
||||
<!-- Skip the tests in this module -->
|
||||
<profile>
|
||||
<id>skip-rpc-tests</id>
|
||||
<id>skipRpcTests</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>skip-rpc-tests</name>
|
||||
<name>skipRpcTests</name>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
|
|
|
@ -98,10 +98,10 @@
|
|||
<profiles>
|
||||
<!-- Skip the tests in this module -->
|
||||
<profile>
|
||||
<id>skip-metrics-api-tests</id>
|
||||
<id>skipMetricsApiTests</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>skip-metrics-api-tests</name>
|
||||
<name>skipMetricsApiTests</name>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
|
|
|
@ -122,10 +122,10 @@
|
|||
<profiles>
|
||||
<!-- Skip the tests in this module -->
|
||||
<profile>
|
||||
<id>skip-metrics-tests</id>
|
||||
<id>skipMetricsTests</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>skip-metrics-tests</name>
|
||||
<name>skipMetricsTests</name>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
|
|
|
@ -124,6 +124,18 @@
|
|||
</dependencies>
|
||||
|
||||
<profiles>
|
||||
<!-- Skip the tests in this module -->
|
||||
<profile>
|
||||
<id>skipPrefixTreeTests</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>skipPrefixTreeTests</name>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
<surefire.skipFirstPart>true</surefire.skipFirstPart>
|
||||
</properties>
|
||||
</profile>
|
||||
<!-- Profiles for building against different hadoop versions -->
|
||||
<!--
|
||||
profile for building against Hadoop 2.0.0-alpha. Activate using:
|
||||
|
|
|
@ -131,10 +131,10 @@
|
|||
<profiles>
|
||||
<!-- Skip the tests in this module -->
|
||||
<profile>
|
||||
<id>skip-rpc-tests</id>
|
||||
<id>skipProtocolTests</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>skip-rpc-tests</name>
|
||||
<name>skipProtocolTests</name>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
|
|
Loading…
Reference in New Issue