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

Apache9 pushed a commit to branch branch-3
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-3 by this push:
     new 4a951c8d1c5 HBASE-30163 IntegrationTestsDriver is broken after we 
upgrade hbase-it to junit5 (#8463)
4a951c8d1c5 is described below

commit 4a951c8d1c56a1ee426766eb430d6648b249df36
Author: Duo Zhang <[email protected]>
AuthorDate: Tue Jul 14 22:28:55 2026 +0800

    HBASE-30163 IntegrationTestsDriver is broken after we upgrade hbase-it to 
junit5 (#8463)
    
    Signed-off-by: Xiao Liu <[email protected]>
    Signed-off-by: Peng Lu <[email protected]>
    (cherry picked from commit 9f594499c74f4cd0ace4836a2e0cf26b694c6cb4)
---
 hbase-assembly/pom.xml                                         |  5 +++++
 .../java/org/apache/hadoop/hbase/IntegrationTestsDriver.java   | 10 +++++++---
 2 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/hbase-assembly/pom.xml b/hbase-assembly/pom.xml
index 094fdcf2ded..ba121e9680d 100644
--- a/hbase-assembly/pom.xml
+++ b/hbase-assembly/pom.xml
@@ -408,6 +408,11 @@
           <artifactId>junit-jupiter-params</artifactId>
           <scope>compile</scope>
         </dependency>
+        <dependency>
+          <groupId>org.junit.platform</groupId>
+          <artifactId>junit-platform-launcher</artifactId>
+          <scope>compile</scope>
+        </dependency>
         <dependency>
           <groupId>org.hamcrest</groupId>
           <artifactId>hamcrest</artifactId>
diff --git 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestsDriver.java 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestsDriver.java
index bbe900ffff8..b381a9535ff 100644
--- a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestsDriver.java
+++ b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestsDriver.java
@@ -38,9 +38,13 @@ import org.slf4j.LoggerFactory;
 import org.apache.hbase.thirdparty.org.apache.commons.cli.CommandLine;
 
 /**
- * This class drives the Integration test suite execution. Executes all tests
- * having @Category(IntegrationTests.class) annotation against an already 
deployed distributed
- * cluster.
+ * This class drives the Integration test suite execution. Executes all tests 
having
+ *
+ * <pre>
+ * &#64;Tag(IntegrationTests.TAG)
+ * </pre>
+ *
+ * annotation against an already deployed distributed cluster.
  */
 public class IntegrationTestsDriver extends AbstractHBaseTool {
   private static final String SHORT_REGEX_ARG = "r";

Reply via email to