From f40a624d361c8887eab8a53fadbff78acfc1fe59 Mon Sep 17 00:00:00 2001 From: Bernhard Kaindl Date: Thu, 27 Jun 2024 12:00:00 +0200 Subject: [PATCH] CI: Complete parallel Coveralls uploads: Finish when done Signed-off-by: Pau Ruiz Safont --- .github/workflows/other.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/other.yml b/.github/workflows/other.yml index dad92a2cf32..9974a15fcd8 100644 --- a/.github/workflows/other.yml +++ b/.github/workflows/other.yml @@ -111,6 +111,18 @@ jobs: github_token: ${{ secrets.github_token }} continue-on-error: true + # For coverage of 2.7 and 3.11 we upload to Coveralls in parallel mode. + # To view the Coveralls results of the PR, click on the "Details" link to the right + # of the Coveralls Logo in the Checks section of the PR. + finish-parallel-coveralls-upload: + needs: python-test # run after the python-test has completed uploading coverages + runs-on: ubuntu-latest + steps: + - name: Finish the parallel coverage upload to Coveralls + uses: coverallsapp/github-action@v1 + with: + parallel-finished: true + deprecation-test: name: Deprecation tests runs-on: ubuntu-22.04