Skip to content

Commit 4342abc

Browse files
authored
Fixed coveralls in CI (#8)
This is a fix as suggested by [this comment on coveralls-public][1]. [1]: lemurheavy/coveralls-public#1493 (comment)
1 parent c2e4092 commit 4342abc

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/check-pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: ./precommit.py
2828

2929
- name: Upload Coverage
30-
run: coveralls
30+
run: coveralls --service=github
3131
env:
3232
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3333
COVERALLS_FLAG_NAME: ${{ matrix.python-version }}
@@ -42,6 +42,6 @@ jobs:
4242
- name: Finish Coveralls
4343
run: |
4444
pip3 install --upgrade coveralls
45-
coveralls --finish
45+
coveralls --finish --service=github
4646
env:
4747
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/check-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ jobs:
3232
- name: Upload coverage to coveralls
3333
env:
3434
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35-
run: coveralls
35+
run: coveralls --service=github

0 commit comments

Comments
 (0)