Try to make coveralls working again. This time with https://github.com/marketplace/actions/coveralls-python
parent
b646d1b4d6
commit
4491c7f3f1
|
|
@ -44,23 +44,16 @@ jobs:
|
||||||
- name: Test with tox for non Jython only
|
- name: Test with tox for non Jython only
|
||||||
if: ${{ ! matrix.jython }}
|
if: ${{ ! matrix.jython }}
|
||||||
run: tox
|
run: tox
|
||||||
- name: Coveralls Parallel
|
- name: Coveralls
|
||||||
env:
|
uses: AndreMiras/coveralls-python-action@v20200413
|
||||||
# required due to https://github.com/coverallsapp/github-action/issues/50
|
|
||||||
COVERALLS_FLAG_NAME: run-${{ matrix.python-version }}-${{ matrix.plattform }}
|
|
||||||
uses: coverallsapp/github-action@master
|
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.github_token }}
|
|
||||||
path-to-lcov: .coverage
|
|
||||||
# flag-name: run-${{ matrix.python-version }}-${{ matrix.plattform }}
|
|
||||||
parallel: true
|
parallel: true
|
||||||
|
|
||||||
finish:
|
coveralls_finish:
|
||||||
needs: test
|
needs: test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Coveralls Finished
|
- name: Coveralls Finished
|
||||||
uses: coverallsapp/github-action@master
|
uses: AndreMiras/coveralls-python-action@v20200413
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.github_token }}
|
|
||||||
parallel-finished: true
|
parallel-finished: true
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue