Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,21 +106,23 @@ jobs:
pytest -v --cov --cov-config .coveragerc tests/test_mariadb_auth.py

- name: Report coverage
run: coveralls
run: coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_FLAG_NAME: ${{ matrix.test-name }}
COVERALLS_FLAG_NAME: ${{ matrix.py }}-${{ matrix.db }}
COVERALLS_PARALLEL: true

coveralls:
name: Finish coveralls
runs-on: ubuntu-20.04
needs: test
container: python:3-slim
steps:
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Finished
run: |
pip3 install --upgrade coveralls
coveralls --finish
pip install --upgrade coveralls
coveralls --finish --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}