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

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


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

commit de0258be79a011a71dbdb93b1aa54fafa7742e99
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]>
---
 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 6c5f255dc..7a841f082 100644
--- a/kyuubi-hive-beeline/pom.xml
+++ b/kyuubi-hive-beeline/pom.xml
@@ -223,6 +223,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