blob: ac36195f62f90a653373083de848067d9608c373 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
[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
python-ldap
setenv =
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}
|