From: Harmon Date: Mon, 20 Sep 2021 08:36:49 +0000 (-0500) Subject: Continue GitHub Actions Test workflow on error sending coverage X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=098a3588500c8e00d06381e44148afe1ee6772ad;p=tweepy.git Continue GitHub Actions Test workflow on error sending coverage This allows tests to pass even when sending coverage to Coveralls fails, e.g. due to https://status.coveralls.io/incidents/ppvnbpd172gy --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8a664b8..48ff401 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,6 +23,7 @@ jobs: run: | python setup.py nosetests - name: Send coverage to Coveralls + continue-on-error: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} COVERALLS_FLAG_NAME: python-${{ matrix.python-version }} @@ -38,6 +39,7 @@ jobs: container: python:3-slim steps: - name: Finish sending coverage to Coveralls + continue-on-error: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: |