Skip to content

Commit

Permalink
Coveralls CI for parallel jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
darrencl committed Jan 24, 2025
1 parent e7be730 commit 5a8170b
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/ci-workflows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,18 @@ jobs:
pip install pytest-cov
pytest tests/ --doctest-modules --junitxml=junit/test-results.xml --cov=suspect --cov-report lcov:cov.info
- name: Coveralls
uses: coverallsapp/github-action@v2
uses: coverallsapp/github-action@v2
with:
flag-name: run-${{ join(matrix.*, '-') }}
parallel: true

finish:
needs: test
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2
with:
parallel-finished: true
carryforward: "run-1,run-2"

0 comments on commit 5a8170b

Please sign in to comment.