From 5d3fa9ef3d77bd5e45c3eec5ddd86aacc51f71fa Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Wed, 1 Nov 2023 08:55:47 +0100 Subject: [PATCH 1/2] 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. --- .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 36631243a5a74..71f86b637dac0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: @@ -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() From dec3146b4abd119181388d9ec92a80eebce4c6fe Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Wed, 1 Nov 2023 09:15:31 +0100 Subject: [PATCH 2/2] Update .github/workflows/ci.yml Co-authored-by: Pankaj Koti --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71f86b637dac0..9aaa1e53fde40 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1577,7 +1577,7 @@ jobs: - name: "Post Tests success: Non-DB" uses: ./.github/actions/post_tests_success if: success() - - name: "Post Tests failure: NoN-DB" + - name: "Post Tests failure: Non-DB" uses: ./.github/actions/post_tests_failure if: failure()