1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-28 02:25:27 +03:00
awx/tox.ini

51 lines
885 B
INI
Raw Normal View History

[tox]
envlist =
py26-dj14, py27-dj14, py26-dj15, py27-dj15, py26-dj16, py27-dj16
[testenv]
commands = python manage.py test main
deps =
ansible==1.3.4
2013-09-12 18:10:01 +04:00
python-ldap
setenv =
2013-06-23 21:21:02 +04:00
DJANGO_SETTINGS_MODULE = awx.settings.development
# For OS X to be able to install pycrypto.
CFLAGS=-I/opt/local/include
downloadcache = {toxworkdir}/cache
[testenv:py26-dj14]
basepython = python2.6
deps =
Django==1.4.10
{[testenv]deps}
[testenv:py27-dj14]
basepython = python2.7
deps =
Django==1.4.10
{[testenv]deps}
[testenv:py26-dj15]
basepython = python2.6
deps =
Django==1.5.5
{[testenv]deps}
[testenv:py27-dj15]
basepython = python2.7
deps =
Django==1.5.5
{[testenv]deps}
[testenv:py26-dj16]
basepython = python2.6
deps =
Django==1.6
{[testenv]deps}
[testenv:py27-dj16]
basepython = python2.7
deps =
Django==1.6
{[testenv]deps}