|
|
@@ -8,7 +8,7 @@ exclude = migrations
|
|
8
|
8
|
max-complexity = 10
|
|
9
|
9
|
|
|
10
|
10
|
[tox]
|
|
11
|
|
-envlist = py27-1.5, py27-1.6, py33-1.5, py33-1.6
|
|
|
11
|
+envlist = py27-1.5, py27-1.6, py33-1.5, py33-1.6, py34-1.5, py34-1.6
|
|
12
|
12
|
|
|
13
|
13
|
[testenv]
|
|
14
|
14
|
commands = python runtests.py []
|
|
|
@@ -23,6 +23,11 @@ basepython = python3.3
|
|
23
|
23
|
deps = -r{toxinidir}/requirements.txt
|
|
24
|
24
|
django==1.5.5
|
|
25
|
25
|
|
|
|
26
|
+[testenv:py34-1.5]
|
|
|
27
|
+basepython = python3.4
|
|
|
28
|
+deps = -r{toxinidir}/requirements.txt
|
|
|
29
|
+ django==1.5.5
|
|
|
30
|
+
|
|
26
|
31
|
[testenv:py27-1.6]
|
|
27
|
32
|
basepython = python2.7
|
|
28
|
33
|
deps = -r{toxinidir}/requirements_py2.txt
|
|
|
@@ -32,3 +37,8 @@ deps = -r{toxinidir}/requirements_py2.txt
|
|
32
|
37
|
basepython = python3.3
|
|
33
|
38
|
deps = -r{toxinidir}/requirements.txt
|
|
34
|
39
|
django==1.6.1
|
|
|
40
|
+
|
|
|
41
|
+[testenv:py34-1.6]
|
|
|
42
|
+basepython = python3.4
|
|
|
43
|
+deps = -r{toxinidir}/requirements.txt
|
|
|
44
|
+ django==1.6.1
|