Skip to content

Commit

Permalink
ci: re-enable coveralls (#321)
Browse files Browse the repository at this point in the history
* ci: re-enable coveralls

* coveralls needed here
  • Loading branch information
thijstriemstra committed Jan 8, 2021
1 parent 9de57d8 commit a13e905
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Expand Up @@ -42,3 +42,22 @@ jobs:
env:
TOX_ENV: qa,doc
run: python -m tox -e $TOX_ENV
- name: Upload Coverage
run: coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_FLAG_NAME: ${{ matrix.test-name }}
COVERALLS_PARALLEL: true

coveralls:
name: Finish Coveralls
needs: build
runs-on: ubuntu-latest
container: python:3-slim
steps:
- name: Finished
run: |
pip3 install --upgrade coveralls
coveralls --finish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a13e905

Please sign in to comment.