Mercurial > p > roundup > code
diff .travis.yml @ 6491:087cae2fbcea
Handle more ResourceWarning issues.
admin.py - remove unneeded close.
mailer.py - close debug log file.
indexer.py - close read of version file
memorydb.py - close python files being compled. Similiar to instance.
not sure why it's compoing things and not just letting instance do
it.
.travis.ymv disable all except 3.9-dev till we get a handle on errors.
also increase errors to 50 from 20.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 06 Sep 2021 16:03:31 -0400 |
| parents | 47a7fc39eaf0 |
| children | 51a6f0b1bfdd |
line wrap: on
line diff
--- a/.travis.yml Mon Sep 06 15:14:58 2021 -0400 +++ b/.travis.yml Mon Sep 06 16:03:31 2021 -0400 @@ -5,13 +5,13 @@ cache: pip python: - - 2.7 +# - 2.7 - 3.9-dev - - 3.8 - - 3.7 - - 3.6 - - 3.4 - - nightly +# - 3.8 +# - 3.7 +# - 3.6 +# - 3.4 +# - nightly #I would like to build and test the maint-1.6 and trunk/default @@ -153,7 +153,7 @@ -W "ignore:'U' mode::docutils.io" -W "ignore:unclosed:ResourceWarning:roundup.roundup.demo" -W "ignore:unclosed file:ResourceWarning:enum" - -v --maxfail=20 test/ --cov=roundup + -v --maxfail=50 test/ --cov=roundup after_success: - codecov
