diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5a58a563..f980475f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -55,7 +55,11 @@ jobs: run: | tox -e$TOX_ENV .tox/$TOX_ENV/bin/coverage xml - .tox/$TOX_ENV/bin/coveralls + - name: Coveralls Parallel + uses: coverallsapp/github-action@v2 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + parallel: true - uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }} @@ -67,3 +71,12 @@ jobs: image: redis ports: - 6379:6379 + finish: + needs: test + if: ${{ always() }} + runs-on: ubuntu-latest + steps: + - name: Coveralls Finished + uses: coverallsapp/github-action@v2 + with: + parallel-finished: true diff --git a/changes/774.feature b/changes/774.feature new file mode 100644 index 00000000..ac238052 --- /dev/null +++ b/changes/774.feature @@ -0,0 +1 @@ +Switch to Coveralls Github action