Skip to content

Commit

Permalink
updated github actions for coverall
Browse files Browse the repository at this point in the history
  • Loading branch information
cylammarco committed Jul 6, 2021
1 parent 8c8d791 commit 96d7df8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,13 @@ jobs:
run: |
coverage run -m pytest --disable-warnings -p no:warnings test
- name: Generate Coveralls reports
if: startsWith(matrix.os, 'ubuntu')
if: startsWith(matrix.os, 'ubuntu') && endsWith(matrix.python-version, 3.8)
uses: AndreMiras/coveralls-python-action@develop
with:
parallel: true
flag-name: Test with pytest
- name: Coveralls
if: startsWith(matrix.os, 'ubuntu') && endsWith(matrix.python-version, 3.8)
uses: AndreMiras/coveralls-python-action@develop
with:
github-token: ${{ secrets.COVERALL_TOKEN }}

0 comments on commit 96d7df8

Please sign in to comment.