Skip to content

Commit

Permalink
Merge pull request #1884 from AndreMiras/feature/coveralls_fix
Browse files Browse the repository at this point in the history
👷 Fix Coveralls parallel reporting
  • Loading branch information
AndreMiras authored Jan 13, 2025
2 parents 9df700c + 5f85f6d commit 5070d84
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/test_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,24 @@ jobs:
run: tox
- name: Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_SERVICE_NAME: github
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_SERVICE_NAME: github-actions
COVERALLS_FLAG_NAME: python-${{ matrix.python }}-${{ matrix.os }}
COVERALLS_PARALLEL: true
run: coveralls

Coveralls:
needs: Tests
runs-on: ubuntu-latest
container: python:3-slim
steps:
- name: Finished
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip install coveralls
coveralls --finish
Docker:
runs-on: ubuntu-latest
steps:
Expand All @@ -55,4 +69,3 @@ jobs:
run: sphinx-build -b linkcheck docs/source docs/build
- name: Generate documentation
run: sphinx-build docs/source docs/build

0 comments on commit 5070d84

Please sign in to comment.