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

bowenliang pushed a commit to branch branch-1.7
in repository https://gitbox.apache.org/repos/asf/kyuubi.git


The following commit(s) were added to refs/heads/branch-1.7 by this push:
     new 0f5a7004b [KYUUBI #4969] [TEST] Run JUnit  tests on beeline module
0f5a7004b is described below

commit 0f5a7004b9093385772432f12dd67d6d55f0b580
Author: liangbowen <[email protected]>
AuthorDate: Fri Jun 16 20:22:45 2023 +0800

    [KYUUBI #4969] [TEST] Run JUnit  tests on beeline module
    
    ### _Why are the changes needed?_
    
    - add `maven-surefire-plugin` to beeline module for running JUnit tests.
    
    ### _How was this patch tested?_
    - [ ] Add some test cases that check the changes thoroughly including 
negative and positive cases if possible
    
    - [ ] Add screenshots for manual tests if appropriate
    
    - [ ] [Run 
test](https://kyuubi.readthedocs.io/en/master/develop_tools/testing.html#running-tests)
 locally before make a pull request
    
    Closes #4969 from bowenliang123/scalatest-junit.
    
    Closes #4969
    
    995c83c07 [liangbowen] surefire on beeline
    
    Authored-by: liangbowen <[email protected]>
    Signed-off-by: liangbowen <[email protected]>
    (cherry picked from commit de0258be79a011a71dbdb93b1aa54fafa7742e99)
    Signed-off-by: liangbowen <[email protected]>
---
 kyuubi-hive-beeline/pom.xml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/kyuubi-hive-beeline/pom.xml b/kyuubi-hive-beeline/pom.xml
index 52274526f..d37a5bd11 100644
--- a/kyuubi-hive-beeline/pom.xml
+++ b/kyuubi-hive-beeline/pom.xml
@@ -217,6 +217,14 @@
                     <skip>true</skip>
                 </configuration>
             </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <skipTests>${skipTests}</skipTests>
+                </configuration>
+            </plugin>
         </plugins>
         <outputDirectory>target/classes</outputDirectory>
         <testOutputDirectory>target/test-classes</testOutputDirectory>

Reply via email to