aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2020-04-25 19:31:32 -0400
committerGitHub <noreply@github.com>2020-04-25 18:31:32 -0500
commit33faef3bb0574878a20489c2a374d09e82508093 (patch)
treeaa0652023891728a1c697163f497dcf368b59aa9
parente978ba79dc384517c1576ffc5abd55498d1485b1 (diff)
downloadcryptography-33faef3bb0574878a20489c2a374d09e82508093.tar.gz
cryptography-33faef3bb0574878a20489c2a374d09e82508093.tar.bz2
cryptography-33faef3bb0574878a20489c2a374d09e82508093.zip
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
-rw-r--r--.github/workflows/ci.yml4
1 files 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 }}"