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

potiuk pushed a commit to branch v2-7-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 33f5d29e77222b71a3a3b36de9481371af624534
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Wed Nov 1 09:15:55 2023 +0100

    Use slightly nicer job name for Non-DB tests in CI (#35333)
    
    * Use slightly nicer job name for Non-DB tests in CI
    
    To be consistend with DB tests - we show both Python version and
    set of test types we use for the job.
    
    * Update .github/workflows/ci.yml
    
    Co-authored-by: Pankaj Koti <pankajkoti...@gmail.com>
    
    ---------
    
    Co-authored-by: Pankaj Koti <pankajkoti...@gmail.com>
    (cherry picked from commit 7cbbc75b57202ceaaf7baeffbc5a0841e5805ed5)
---
 .github/workflows/ci.yml | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b51e933663..b9cbe5d049 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1542,7 +1542,8 @@ jobs:
 
   tests-no-db:
     timeout-minutes: 60
-    name: "Non-DB"
+    name: >
+      Non-DB: 
Py${{matrix.python-version}}:${{needs.build-info.outputs.parallel-test-types-list-as-string}}
     runs-on: ${{fromJSON(needs.build-info.outputs.runs-on)}}
     needs: [build-info, wait-for-ci-images]
     strategy:
@@ -1568,14 +1569,14 @@ jobs:
       - name: >
           Prepare breeze & CI image: 
${{needs.build-info.outputs.default-python-version}}:${{env.IMAGE_TAG}}
         uses: ./.github/actions/prepare_breeze_and_image
-      - name: "Tests: ${{matrix.python-version}}:NoDB"
+      - name: "Tests: ${{matrix.python-version}}:Non-DB"
         run: >
           breeze testing non-db-tests
           --parallel-test-types 
"${{needs.build-info.outputs.parallel-test-types-list-as-string}}"
-      - name: "Post Tests success: NoDB"
+      - name: "Post Tests success: Non-DB"
         uses: ./.github/actions/post_tests_success
         if: success()
-      - name: "Post Tests failure: NoDB"
+      - name: "Post Tests failure: Non-DB"
         uses: ./.github/actions/post_tests_failure
         if: failure()
 

Reply via email to