Merge pull request #3032 from FichteForks/pr/run-37-tests

Actually run tests on Python 3.7
This commit is contained in:
Adrian Sampson 2018-09-13 18:14:38 -04:00 committed by GitHub
commit e993e252f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,12 +40,12 @@ passenv =
deps =
{test,cov}: {[_test]deps}
py27: pathlib
py{27,34,35,36}-flake8: {[_flake8]deps}
py{27,34,35,36,37}-flake8: {[_flake8]deps}
commands =
py27-cov: python -m nose --with-coverage {posargs}
py27-test: python -m nose {posargs}
py{34,35}-cov: python -bb -m nose --with-coverage {posargs}
py{34,35,36}-test: python -bb -m nose {posargs}
py3{4,5,6,7}-cov: python -bb -m nose --with-coverage {posargs}
py3{4,5,6,7}-test: python -bb -m nose {posargs}
py27-flake8: flake8 --min-version 2.7 {posargs} {[_flake8]files}
py34-flake8: flake8 --min-version 3.4 {posargs} {[_flake8]files}
py35-flake8: flake8 --min-version 3.5 {posargs} {[_flake8]files}