Mercurial > p > roundup > code
changeset 6919:4076c5cfd682
remove limit on test failures for github actions.
See if there is more info to disgnose sqlite falures.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Tue, 06 Sep 2022 15:30:09 -0400 |
| parents | cb2ed1e8c852 |
| children | b3fb615b81c4 |
| files | .github/workflows/ci-test.yml |
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/.github/workflows/ci-test.yml Tue Sep 06 14:43:36 2022 -0400 +++ b/.github/workflows/ci-test.yml Tue Sep 06 15:30:09 2022 -0400 @@ -190,10 +190,10 @@ -W "ignore:'U' mode::docutils.io" \ -W "ignore:unclosed:ResourceWarning:roundup.roundup.demo" \ -W "ignore:unclosed file:ResourceWarning:enum" \ - -v --maxfail=5 test/ --cov=roundup + -v test/ --cov=roundup else # python2 case - pytest -v -r a --maxfail=5 test/ --cov=roundup + pytest -v -r a test/ --cov=roundup fi - name: Upload coverage to Codecov
