File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -106,21 +106,23 @@ jobs:
106
106
pytest -v --cov --cov-config .coveragerc tests/test_mariadb_auth.py
107
107
108
108
- name : Report coverage
109
- run : coveralls
109
+ run : coveralls --service=github
110
110
env :
111
111
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
112
- COVERALLS_FLAG_NAME : ${{ matrix.test-name }}
112
+ COVERALLS_FLAG_NAME : ${{ matrix.py }}-${{ matrix.db }}
113
113
COVERALLS_PARALLEL : true
114
114
115
115
coveralls :
116
116
name : Finish coveralls
117
117
runs-on : ubuntu-20.04
118
118
needs : test
119
- container : python:3-slim
120
119
steps :
120
+ - uses : actions/setup-python@v2
121
+ with :
122
+ python-version : 3.9
121
123
- name : Finished
122
124
run : |
123
- pip3 install --upgrade coveralls
124
- coveralls --finish
125
+ pip install --upgrade coveralls
126
+ coveralls --finish --service=github
125
127
env :
126
128
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments