Fix Coveralls for parallel builds

master
baztian 2020-06-19 21:08:16 +02:00
parent d908f1f713
commit 3cdc9016a8
1 changed files with 15 additions and 3 deletions

View File

@ -10,7 +10,7 @@ on:
branches: [ master ]
jobs:
build:
test:
runs-on: ubuntu-latest
strategy:
@ -44,7 +44,19 @@ jobs:
- name: Test with tox for non Jython only
if: ${{ ! matrix.jython }}
run: tox
- name: Coveralls
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
github-token: ${{ secrets.github_token }}
flag-name: run-${{ matrix.python-version }}-${{ matrix.plattform }}
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true