django-rest-framework/tox.ini

40 lines
1.2 KiB
INI
Raw Normal View History

2012-09-25 15:21:05 +04:00
[tox]
2014-05-16 02:50:16 +04:00
envlist =
py27-{flake8,docs},
{py26,py27}-django14,
{py26,py27,py32,py33,py34}-django{15,16},
2015-01-19 02:04:50 +03:00
{py27,py32,py33,py34}-django{17,18alpha,master}
2012-09-25 15:21:05 +04:00
[testenv]
2014-08-19 16:28:07 +04:00
commands = ./runtests.py --fast
setenv =
PYTHONDONTWRITEBYTECODE=1
deps =
2015-01-08 17:51:08 +03:00
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
2015-01-19 02:04:50 +03:00
django18alpha: https://www.djangoproject.com/download/1.8a1/tarball/
djangomaster: https://github.com/django/django/zipball/master
{py26,py27}-django{14,15,16,17}: django-guardian==1.2.3
{py26,py27}-django{14,15,16}: oauth2==1.5.211
{py26,py27}-django{14,15,16}: django-oauth-plus==2.2.1
{py26,py27}-django{14,15}: django-oauth2-provider==0.2.3
{py26,py27}-django16: django-oauth2-provider==0.2.4
pytest-django==2.8.0
2015-01-23 17:21:51 +03:00
django-filter==0.9.2
2014-03-07 18:16:31 +04:00
defusedxml==0.3
markdown>=2.1.0
PyYAML>=3.10
2014-05-16 02:50:16 +04:00
[testenv:py27-flake8]
deps =
pytest==2.6.4
flake8==2.2.2
commands = ./runtests.py --lintonly
2014-10-23 00:22:16 +04:00
[testenv:py27-docs]
deps =
mkdocs>=0.11.1
commands = mkdocs build