Skip to content

Commit 266b562

Browse files
authored
Update tests.yml
1 parent 4aef8a9 commit 266b562

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ jobs:
4848
4949
- name: Upload coverage data to coveralls.io
5050
continue-on-error: true
51-
run: pipx run coveralls --service=github
51+
run: |
52+
pip install coveralls
53+
coveralls --service=github
5254
env:
5355
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5456
COVERALLS_FLAG_NAME: ${{ matrix.python-version }}
@@ -62,6 +64,8 @@ jobs:
6264
steps:
6365
- name: Finished
6466
continue-on-error: true
65-
run: pipx run coveralls --finish
67+
run: |
68+
pip install coveralls
69+
coveralls --finish
6670
env:
6771
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)