From 33faef3bb0574878a20489c2a374d09e82508093 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 25 Apr 2020 19:31:32 -0400 Subject: Make codecov upload errors in GHA pass silently (#5232) The spurious failure rate on codecov uploads is high enough that this is a cure worse than the disease --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d49ee719..ca1e36d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: - name: Upload coverage run: | curl -o codecov.sh -f https://codecov.io/bash - bash codecov.sh -n "Python ${{ matrix.PYTHON.VERSION }} on macOS" -Z + bash codecov.sh -n "Python ${{ matrix.PYTHON.VERSION }} on macOS" windows: runs-on: windows-latest @@ -96,4 +96,4 @@ jobs: - name: Upload coverage run: | curl -o codecov.sh -f https://codecov.io/bash - bash codecov.sh -n "Python ${{ matrix.PYTHON.VERSION }} on ${{ matrix.WINDOWS.WINDOWS }}" -Z + bash codecov.sh -n "Python ${{ matrix.PYTHON.VERSION }} on ${{ matrix.WINDOWS.WINDOWS }}" -- cgit v1.2.3