From 4491c7f3f1b1466ff3248d4993ed4e875870a493 Mon Sep 17 00:00:00 2001 From: baztian Date: Fri, 19 Jun 2020 23:27:10 +0200 Subject: [PATCH] Try to make coveralls working again. This time with https://github.com/marketplace/actions/coveralls-python --- .github/workflows/python-package.yml | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 610967e..b3967bf 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -44,23 +44,16 @@ jobs: - name: Test with tox for non Jython only if: ${{ ! matrix.jython }} run: tox - - name: Coveralls Parallel - env: - # 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 + - name: Coveralls + uses: AndreMiras/coveralls-python-action@v20200413 with: - github-token: ${{ secrets.github_token }} - path-to-lcov: .coverage - # flag-name: run-${{ matrix.python-version }}-${{ matrix.plattform }} parallel: true - finish: + coveralls_finish: needs: test runs-on: ubuntu-latest steps: - name: Coveralls Finished - uses: coverallsapp/github-action@master + uses: AndreMiras/coveralls-python-action@v20200413 with: - github-token: ${{ secrets.github_token }} parallel-finished: true