mirror of
https://github.com/jazzband/django-constance.git
synced 2026-03-16 22:40:24 +00:00
25 lines
576 B
INI
25 lines
576 B
INI
[tox]
|
|
envlist =
|
|
{py27,py33,py34,pypy}-django-{17,18},
|
|
{py27,py34,py35,pypy}-django-master
|
|
|
|
[testenv]
|
|
basepython =
|
|
py27: python2.7
|
|
py33: python3.3
|
|
py34: python3.4
|
|
py35: python3.5
|
|
pypy: pypy
|
|
deps =
|
|
redis
|
|
coverage
|
|
django-picklefield
|
|
django-17: Django>=1.7,<1.8
|
|
django-18: Django>=1.8,<1.9
|
|
django-master: https://github.com/django/django/archive/master.tar.gz
|
|
usedevelop = true
|
|
commands =
|
|
coverage run {envbindir}/django-admin.py test --settings=tests.settings -v2
|
|
coverage report
|
|
setenv =
|
|
PYTHONDONTWRITEBYTECODE=1
|