django-rest-framework/tox.ini
2015-01-19 15:16:57 +00:00

34 lines
965 B
INI

[tox]
envlist =
py27-{flake8,docs},
{py26,py27}-django14,
{py26,py27,py32,py33,py34}-django{15,16},
{py27,py32,py33,py34}-django{17,18alpha,master}
[testenv]
commands = ./runtests.py --fast
setenv =
PYTHONDONTWRITEBYTECODE=1
deps =
django14: Django==1.4.11 # Should track minimum supported
django15: Django==1.5.6 # Should track minimum supported
django16: Django==1.6.3 # Should track minimum supported
django17: Django==1.7.2 # Should track maximum supported
django18alpha: https://www.djangoproject.com/download/1.8a1/tarball/
djangomaster: https://github.com/django/django/zipball/master
django-guardian==1.2.4
pytest-django==2.8.0
django-filter==0.9.1
markdown>=2.1.0
[testenv:py27-flake8]
deps =
pytest==2.6.4
flake8==2.2.2
commands = ./runtests.py --lintonly
[testenv:py27-docs]
deps =
mkdocs>=0.11.1
commands = mkdocs build