From 785350b28ef05e2e6f331da7625af4049538f6c6 Mon Sep 17 00:00:00 2001 From: Teodora Sechkova Date: Thu, 29 Apr 2021 15:28:53 +0300 Subject: [PATCH] CI: Allow failure when publishing on coveralls A failure during publishing of the coverage results on coveralls should not fail the whole build job. Allow the step to fail. Signed-off-by: Teodora Sechkova --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d001cee1..7d41c64a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,6 +69,9 @@ jobs: run: tox - name: Publish on coveralls.io + # A failure to publish coverage results on coveralls should not + # be a reason for a job failure. + continue-on-error: true # TODO: Maybe make 'lint' a separate job instead of case handling here if: ${{ env.TOXENV != 'lint' }} env: