Skip to content

Commit 5cf07c8

Browse files
authored
ref: add continue-on-error for codecov action on self-hosted integration tests (#3978)
1 parent 143f585 commit 5cf07c8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

action.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,15 +186,17 @@ runs:
186186
pytest -x --cov --junitxml=junit.xml _integration-test/
187187
188188
- name: Upload coverage to Codecov
189-
uses: codecov/codecov-action@v5
190189
if: inputs.CODECOV_TOKEN
190+
continue-on-error: true
191+
uses: codecov/codecov-action@v5
191192
with:
192193
directory: ${{ github.action_path }}
193194
token: ${{ inputs.CODECOV_TOKEN }}
194195
slug: getsentry/self-hosted
195196

196197
- name: Upload test results to Codecov
197198
if: inputs.CODECOV_TOKEN && !cancelled()
199+
continue-on-error: true
198200
uses: codecov/test-results-action@v1
199201
with:
200202
directory: ${{ github.action_path }}

0 commit comments

Comments
 (0)