Skip to content

Commit

Permalink
Try to restore 'main' setup for coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
leplatrem committed Jan 23, 2024
1 parent 9b8e340 commit bdde35d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
27 changes: 15 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,23 +79,26 @@ jobs:
run: ls -laR

- name: Coveralls for ${{ matrix.pyenv }}
uses: coverallsapp/github-action@v2
if: endsWith(matrix.pyenv, '-raw') != true
with:
debug: true
flag-name: ${{ matrix.pyenv }}
parallel: true
github-token: ${{ secrets.GITHUB_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_FLAG_NAME: ${{ matrix.pyenv }}
COVERALLS_PARALLEL: true
run: |
pip install coveralls
coveralls --service=github
finish:
name: Coveralls Finished
needs: unit-tests
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2
- uses: actions/setup-python@v5
with:
debug: true
parallel-finished: true
carryforward: "py38,py39,py310,py311"
github-token: ${{ secrets.GITHUB_TOKEN }}
python-version: "3.x"
- name: Install coveralls
run: pip install coveralls
- name: Coveralls Finished
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: coveralls --service=github --finish
2 changes: 0 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,3 @@ python_tag=cp3

[coverage:run]
branch = True
parallel = True
relative_files = True

0 comments on commit bdde35d

Please sign in to comment.