Fix packaging.
[django-ssify.git] / tox.ini
1 # This file is part of django-ssify, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See README.md for more information.
3 #
4 [tox]
5 envlist=clear,
6     d14-py26,
7     d15-py26, d15-py27, d15-py32, d15-py33,
8     d16-py26, d16-py27, d16-py32, d16-py33,
9     d17-py27, d17-py32, d17-py33, d17-py34,
10     dd-py27, dd-py32, dd-py33, dd-py34,
11     stats
12
13 [testenv]
14 indexserver=http://py.mdrn.pl
15 commands=coverage run --source=ssify --append --branch runtests.py
16 deps=coverage
17
18 [testenv:clear]
19 commands=coverage erase
20
21 [testenv:stats]
22 commands=coverage html
23
24 [base]
25
26 [testenv:d14-py26]
27 basepython=python2.6
28 deps=
29     Django>=1.4,<1.5
30     {[testenv]deps}
31
32 [testenv:d15-py26]
33 basepython=python2.6
34 deps=
35     Django>=1.5,<1.6
36     {[testenv]deps}
37
38 [testenv:d15-py27]
39 basepython=python2.7
40 deps=
41     Django>=1.5,<1.6
42     {[testenv]deps}
43
44 [testenv:d15-py32]
45 basepython=python3.2
46 deps=
47     Django>=1.5,<1.6
48     {[testenv]deps}
49
50 [testenv:d15-py33]
51 basepython=python3.3
52 deps=
53     Django>=1.5,<1.6
54     {[testenv]deps}
55
56 [testenv:d16-py26]
57 basepython=python2.6
58 deps=
59     Django>=1.6,<1.7
60     {[testenv]deps}
61
62 [testenv:d16-py27]
63 basepython=python2.7
64 deps=
65     Django>=1.6,<1.7
66     {[testenv]deps}
67
68 [testenv:d16-py32]
69 basepython=python3.2
70 deps=
71     Django>=1.6,<1.7
72     {[testenv]deps}
73
74 [testenv:d16-py33]
75 basepython=python3.3
76 deps=
77     Django>=1.6,<1.7
78     {[testenv]deps}
79
80 [testenv:d17-py27]
81 basepython=python2.7
82 deps=
83     https://www.djangoproject.com/download/1.7c3/tarball/
84     {[testenv]deps}
85
86 [testenv:d17-py32]
87 basepython=python3.2
88 deps=
89     https://www.djangoproject.com/download/1.7c3/tarball/
90     {[testenv]deps}
91
92 [testenv:d17-py33]
93 basepython=python3.3
94 deps=
95     https://www.djangoproject.com/download/1.7c3/tarball/
96     {[testenv]deps}
97
98 [testenv:d17-py34]
99 basepython=python3.4
100 deps=
101     https://www.djangoproject.com/download/1.7c3/tarball/
102     {[testenv]deps}
103
104 [testenv:dd-py27]
105 basepython=python2.7
106 deps=
107     https://github.com/django/django/zipball/master
108     {[testenv]deps}
109
110 [testenv:dd-py32]
111 basepython=python3.2
112 deps=
113     https://github.com/django/django/zipball/master
114     {[testenv]deps}
115
116 [testenv:dd-py33]
117 basepython=python3.3
118 deps=
119     https://github.com/django/django/zipball/master
120     {[testenv]deps}
121
122 [testenv:dd-py34]
123 basepython=python3.4
124 deps=
125     https://github.com/django/django/zipball/master
126     {[testenv]deps}