Skip to content

Commit

Permalink
Use slightly nicer job name for Non-DB tests in CI (#35333)
Browse files Browse the repository at this point in the history
* 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 <pankajkoti699@gmail.com>

---------

Co-authored-by: Pankaj Koti <pankajkoti699@gmail.com>
  • Loading branch information
potiuk and pankajkoti committed Nov 1, 2023
1 parent 3a3078b commit 7cbbc75
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1543,7 +1543,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:
Expand All @@ -1569,14 +1570,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()

Expand Down

0 comments on commit 7cbbc75

Please sign in to comment.