diff options
Diffstat (limited to 'tox.ini')
| -rw-r--r-- | tox.ini | 15 |
1 files changed, 10 insertions, 5 deletions
@@ -2,19 +2,23 @@ envlist = lint, py35,py36,py37,py38,pypy3, - docs,py36-cover,coverage, + py38-cover,coverage, + docs [testenv] commands = - cover: coverage run \ - {envbindir}/nosetests --with-xunit --xunit-file=nosetests-{envname}.xml {posargs:} + python --version + pytest {posargs:} extras = testing -deps = - cover: coverage setenv = COVERAGE_FILE=.coverage.{envname} +[testenv:py38-cover] +commands = + python --version + pytest --cov {posargs:} + [testenv:lint] skip_install = true commands = @@ -54,6 +58,7 @@ deps = coverage setenv = COVERAGE_FILE=.coverage +depends = py38-cover [testenv:format] skip_install = true |
