tox: do not use coverage with Python 3.2

Fixes https://github.com/jezdez/django-configurations/issues/129.
This commit is contained in:
Daniel Hahler 2015-09-30 01:07:20 +02:00
parent 09eae37b23
commit 11990d1db6

10
tox.ini
View file

@ -34,6 +34,16 @@ commands =
coverage run {envbindir}/django-cadmin test -v2 {posargs:tests}
coverage report
# Coverage supports only Python 3.3+ for Python 3.
[testenv:py32-dj15]
commands = {envbindir}/django-cadmin test -v2 {posargs:tests}
[testenv:py32-dj16]
commands = {envbindir}/django-cadmin test -v2 {posargs:tests}
[testenv:py32-dj17]
commands = {envbindir}/django-cadmin test -v2 {posargs:tests}
[testenv:py32-dj18]
commands = {envbindir}/django-cadmin test -v2 {posargs:tests}
[testenv:flake8-py27]
commands = flake8 configurations
deps = flake8