just run coverage on every tox env in an attempt to make codecov actually display some results

This commit is contained in:
Mahmoud Hashemi 2017-04-20 23:19:20 -07:00
parent 6f8ff08bc3
commit 92490da85b
1 changed files with 0 additions and 13 deletions

13
tox.ini
View File

@ -4,21 +4,8 @@ envlist = py26,py27,py34,py35,py36,pypy,coverage-report
[testenv]
changedir = .tox
deps = -rrequirements-test.txt
commands = python -m pytest --doctest-modules {envsitepackagesdir}/hyperlink {posargs}
[testenv:py27]
changedir = .tox
deps = -rrequirements-test.txt
commands = coverage run --parallel --rcfile {toxinidir}/.tox-coveragerc -m pytest --doctest-modules {envsitepackagesdir}/hyperlink {posargs}
[testenv:py36]
changedir = .tox
deps = -rrequirements-test.txt
commands = coverage run --parallel --rcfile {toxinidir}/.tox-coveragerc -m pytest --doctest-modules {envsitepackagesdir}/hyperlink {posargs}
# Uses default basepython otherwise reporting doesn't work on Travis where
# Python 3.6 is only available in 3.6 jobs.
[testenv:coverage-report]