You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by ra...@apache.org on 2024/01/09 18:17:09 UTC

(phoenix) branch 5.1 updated: PHOENIX-7156 enabling category-wise integration test execution capability (#1786)

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

rajeshbabu pushed a commit to branch 5.1
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/5.1 by this push:
     new bc42d82241 PHOENIX-7156 enabling category-wise integration test execution capability (#1786)
bc42d82241 is described below

commit bc42d822412f036460b507b0ab2acc7605bf22df
Author: Nikita Pande <37...@users.noreply.github.com>
AuthorDate: Tue Jan 9 23:47:03 2024 +0530

    PHOENIX-7156 enabling category-wise integration test execution capability (#1786)
---
 pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/pom.xml b/pom.xml
index 776103c483..b0dabad1b3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -164,6 +164,9 @@
     <maven-checkstyle-plugin.version>3.3.0</maven-checkstyle-plugin.version>
 
     <!-- Plugin options -->
+    <skipParallelStatsEnabledTests>false</skipParallelStatsEnabledTests>
+    <skipParallelStatsDisabledTests>false</skipParallelStatsDisabledTests>
+    <skipNeedsOwnMiniClusterTests>false</skipNeedsOwnMiniClusterTests>
     <numForkedUT>8</numForkedUT>
     <numForkedIT>7</numForkedIT>
     <it.failIfNoSpecifiedTests>false</it.failIfNoSpecifiedTests>
@@ -369,6 +372,7 @@
             <execution>
               <id>ParallelStatsEnabledTest</id>
               <configuration>
+                <skip>${skipParallelStatsEnabledTests}</skip>
                 <reuseForks>true</reuseForks>
                 <groups>org.apache.phoenix.end2end.ParallelStatsEnabledTest</groups>
               </configuration>
@@ -381,6 +385,7 @@
               <id>ParallelStatsDisabledTest</id>
               <configuration>
                 <reuseForks>true</reuseForks>
+                <skip>${skipParallelStatsDisabledTests}</skip>
                 <groups>org.apache.phoenix.end2end.ParallelStatsDisabledTest</groups>
               </configuration>
               <goals>
@@ -392,6 +397,7 @@
               <id>NeedTheirOwnClusterTests</id>
               <configuration>
                  <reuseForks>false</reuseForks>
+                 <skip>${skipNeedsOwnMiniClusterTests}</skip>
                  <groups>org.apache.phoenix.end2end.NeedsOwnMiniClusterTest</groups>
               </configuration>
               <goals>