From 098a3588500c8e00d06381e44148afe1ee6772ad Mon Sep 17 00:00:00 2001 From: Harmon Date: Mon, 20 Sep 2021 03:36:49 -0500 Subject: [PATCH] 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 --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) 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: | -- 2.25.1