Skip to content

Commit

Permalink
fix: allow FSL installation failure and let CI pass if docs coverage …
Browse files Browse the repository at this point in the history
…upload fails
  • Loading branch information
synchon committed Mar 7, 2024
1 parent cc5eb54 commit a7bd0f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
# Allow coverage upload failure
fail_ci_if_error: false
flags: docs
if: success() && matrix.python-version == 3.10
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ jobs:
- name: Test with tox
run: |
tox
# Bypass FSL installation failure
if: success() || failure()
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
Expand Down

0 comments on commit a7bd0f6

Please sign in to comment.