forked from django-cumulus/django-cumulus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
54 lines (47 loc) · 1.07 KB
/
tox.ini
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
51
52
53
54
[tox]
envlist =
py27-django17,
py27-django16,
py27-django15,
py27-django14,
py27-django13,
py27-django12
[testenv]
changedir = example
setenv = PYTHONPATH = {toxinidir}/example
[testenv:py27-django17]
commands = django-admin.py test cumulus --settings=settings.test
deps =
Django>1.6,<1.8
pyrax>=1.9,<1.10
Pillow
[testenv:py27-django16]
commands = django-admin.py test cumulus --settings=settings.test
deps =
Django>1.5,<1.7
pyrax>=1.9,<1.10
Pillow
[testenv:py27-django15]
commands = django-admin.py test cumulus --settings=settings.test
deps =
Django>1.4,<1.6
pyrax>=1.9,<1.10
Pillow
[testenv:py27-django14]
commands = django-admin.py test cumulus --settings=settings.test
deps =
Django>1.3,<1.5
pyrax>=1.9,<1.10
Pillow
[testenv:py27-django13]
commands = django-admin.py test cumulus --settings=settings.test
deps =
Django>1.2,<1.4
pyrax>=1.9,<1.10
Pillow
[testenv:py27-django12]
commands = django-admin.py test cumulus --settings=settings.legacy
deps =
Django>1.1,<1.3
pyrax>=1.9,<1.10
Pillow