diff options
author | Julian Berman <Julian@GrayVines.com> | 2020-10-04 12:23:30 -0400 |
---|---|---|
committer | Julian Berman <Julian@GrayVines.com> | 2020-10-04 12:23:30 -0400 |
commit | 58259e7a9fc1d8ef0602c06060bba4607c99bd90 (patch) | |
tree | adfd6649d62af5c5204967f9d0d7f7de17eda92f | |
parent | 4b722512fe1fb97fc63c8591d5a47fcd3a69fac9 (diff) | |
download | jsonschema-58259e7a9fc1d8ef0602c06060bba4607c99bd90.tar.gz |
Don't fail when codecov.io flakes.
-rw-r--r-- | .github/workflows/coverage.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 0eae5c8..101000f 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -20,6 +20,8 @@ jobs: - name: Install tox run: python -m pip install tox - name: Collect & Upload Coverage + # codecov.io is too flaky to fail for this right now + continue-on-error: true run: python -m tox -e pypy3-format-codecov env: CODECOV_TOKEN: 2b38dae1-41c4-4435-a29d-79a1299e5617 |