Skip to content

Commit

Permalink
use parallel for coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
s-martin committed Nov 8, 2023
1 parent 36bd6ea commit 0dacdc2
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,20 @@ jobs:
run: |
pip install -r requirements.txt
pytest --cov --cov-report xml
- name: Report to Coveralls
- name: Report to Coveralls (parallel)
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
file: ./components/gpio_control/coverage.xml
format: cobertura
parallel: true



finish:
needs: build
runs-on: ubuntu-latest
steps:
- name: Close parallel build
uses: coverallsapp/github-action@v1
with:
parallel-finished: true
#carryforward: "run-1,run-2"

0 comments on commit 0dacdc2

Please sign in to comment.