Skip to content

Commit

Permalink
install coverage dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
niccokunzmann committed Jun 23, 2024
1 parent 9af4e50 commit 13d8a9f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Test
run: tox -e ${{ matrix.config[1] }}
- name: Upload coverage data to coveralls.io
run: coveralls --service=github-actions || true
run: coveralls --service=github-actions
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_REPO_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Expand All @@ -62,8 +62,10 @@ jobs:
runs-on: ubuntu-latest
container: python:3-slim
steps:
- name: Coverage
run: coveralls --service=github-actions --finish || true
- name: Install dependencies
run: pip3 install --upgrade coveralls
- name: Upload coverage
run: coveralls --service=github-actions --finish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_REPO_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Expand Down

0 comments on commit 13d8a9f

Please sign in to comment.