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

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


The following commit(s) were added to refs/heads/branch-1.10 by this push:
     new d75335af2e [KYUUBI #7225] [CI] Skip Python Client unit tests when only 
documentation changes are made
d75335af2e is described below

commit d75335af2e8b43223126597dbefb6b39d19ef7e4
Author: dnskr <[email protected]>
AuthorDate: Sun Oct 26 10:23:03 2025 +0100

    [KYUUBI #7225] [CI] Skip Python Client unit tests when only documentation 
changes are made
    
    ### Why are the changes needed?
    The PR disables Python Client unit tests for documentation-only changes as 
not needed, similar to PR https://github.com/apache/kyuubi/pull/7223.
    
    ### How was this patch tested?
    The PR was not tested directly, but it is similar to already tested PR 
https://github.com/apache/kyuubi/pull/7223.
    
    ### Was this patch authored or co-authored using generative AI tooling?
    No
    
    Closes #7225 from dnskr/skip-python-client-unit-tests-for-docs.
    
    Closes #7225
    
    2184c03a2 [dnskr] [CI] Skip Python Client unit tests when only 
documentation changes are made
    
    Authored-by: dnskr <[email protected]>
    Signed-off-by: dnskr <[email protected]>
    (cherry picked from commit 07d1d5f24fd502482532db8a1fdd8fe550bb08df)
    Signed-off-by: dnskr <[email protected]>
---
 .github/workflows/python.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml
index d0ea2356b3..cfa2943a6d 100644
--- a/.github/workflows/python.yml
+++ b/.github/workflows/python.yml
@@ -22,10 +22,14 @@ on:
     branches:
       - master
       - branch-*
+    paths-ignore:
+      - 'docs/**'
   pull_request:
     branches:
       - master
       - branch-*
+    paths-ignore:
+      - 'docs/**'
 
 concurrency:
   group: python-${{ github.head_ref || github.run_id }}

Reply via email to