forked from django-wiki/django-wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
67 lines (58 loc) · 1.44 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
55
56
57
58
59
60
61
62
63
64
65
66
67
[tox]
# Ensure you add to .travis.yml if you add here
envlist = py26-django15, py26-django16, py27-django15, py27-django16, py27-django17, py33-django15, py33-django16, py33-django17
[testenv]
commands = python -W all:"":"":"":0 runtests.py
deps =
Markdown==2.3.1
Pillow==2.3.0
South==1.0.2
django-classy-tags==0.4
django-mptt==0.6.0
django-sekizai==0.7
git+https://github.com/mariocesar/sorl-thumbnail@007156ba3428ce02a92dcd9cce03a4803225ea66#egg=sorl.thumbnail
six==1.6.1
django_nyt==0.9.6.post1
django15deps = Django==1.5.10
django16deps = Django==1.6.8
django17deps = Django==1.7.1
[testenv:py26-django15]
basepython = python2.6
deps =
{[testenv]django15deps}
{[testenv]deps}
[testenv:py26-django16]
basepython = python2.6
deps =
{[testenv]django16deps}
{[testenv]deps}
[testenv:py27-django15]
basepython = python2.7
deps =
{[testenv]django15deps}
{[testenv]deps}
[testenv:py27-django16]
basepython = python2.7
deps =
{[testenv]django16deps}
{[testenv]deps}
[testenv:py27-django17]
basepython = python2.7
deps =
{[testenv]django17deps}
{[testenv]deps}
[testenv:py33-django15]
basepython = python3.3
deps =
{[testenv]django15deps}
{[testenv]deps}
[testenv:py33-django16]
basepython = python3.3
deps =
{[testenv]django16deps}
{[testenv]deps}
[testenv:py33-django17]
basepython = python3.3
deps =
{[testenv]django17deps}
{[testenv]deps}