Skip to content

Commit

Permalink
use continue-on-error instead, to continue documenting code coverage …
Browse files Browse the repository at this point in the history
…on 422
  • Loading branch information
LMNTL authored and jnm committed Nov 14, 2023
1 parent 3549850 commit b8ed24d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ jobs:
# Explicitly name the directories where coverage should be measured;
# specifying just `--cov=.` includes `src`, which contains third-party packages
run: pytest --cov=hub --cov=kobo --cov=kpi -ra
# Coveralls action will intermittently give 422 errors - until that issue is resolved this step is commented out.
#- name: Run coveralls for back-end code
# uses: AndreMiras/coveralls-python-action@develop
- name: Run coveralls for back-end code
uses: AndreMiras/coveralls-python-action@develop
# Coveralls action will intermittently give 422 errors - until that issue is resolved this step allowed to error.
continue-on-error: true

0 comments on commit b8ed24d

Please sign in to comment.