forked from SmileyChris/easy-thumbnails
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
80 lines (65 loc) · 1.3 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
68
69
70
71
72
73
74
75
76
77
78
79
80
[tox]
distribute = False
envlist =
py25-1.2.X, py26-1.2.X, py27-1.2.X,
py25-1.3.X, py26-1.3.X, py27-1.3.X,
py25, py26, py27, docs
[testenv]
downloadcache = {toxworkdir}/_download/
commands =
{envbindir}/python {envbindir}/django-admin.py test {posargs:easy_thumbnails}
setenv =
DJANGO_SETTINGS_MODULE = easy_thumbnails.test_settings
[testenv:docs]
basepython = python2.7
deps =
Sphinx==1.0.7
Django==1.3.1
PIL
commands =
{envbindir}/sphinx-build -a -n -b html -d docs/_build/doctrees docs docs/_build/html
[testenv:py25-1.2.X]
basepython = python2.5
deps =
Django==1.2.4
PIL
[testenv:py26-1.2.X]
basepython = python2.6
deps =
Django==1.2.4
PIL
[testenv:py27-1.2.X]
basepython = python2.7
deps =
Django==1.2.4
PIL
[testenv:py25-1.3.X]
basepython = python2.5
deps =
Django==1.3.1
PIL
[testenv:py26-1.3.X]
basepython = python2.6
deps =
Django==1.3.1
PIL
[testenv:py27-1.3.X]
basepython = python2.7
deps =
Django==1.3.1
PIL
[testenv:py25]
basepython = python2.5
deps =
https://github.com/django/django/zipball/master
PIL
[testenv:py26]
basepython = python2.6
deps =
https://github.com/django/django/zipball/master
PIL
[testenv:py27]
basepython = python2.7
deps =
https://github.com/django/django/zipball/master
PIL