-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
50 lines (43 loc) · 863 Bytes
/
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
[tox]
envlist =
py26-15,
py26-16,
py27-15,
py27-16
[testenv]
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}/templation
commands =
python runtests.py
[testenv:py26-15]
basepython = python2.6
deps =
importlib
Django>=1.5,<1.6
-r{toxinidir}/requirements-test.txt
[testenv:py26-16]
basepython = python2.6
deps =
importlib
Django>=1.6,<1.7
-r{toxinidir}/requirements-test.txt
[testenv:py27-15]
basepython = python2.7
deps =
Django>=1.5,<1.6
-r{toxinidir}/requirements-test.txt
[testenv:py27-16]
basepython = python2.7
deps =
Django>=1.6,<1.7
-r{toxinidir}/requirements-test.txt
[testenv:py33-15]
basepython = python3.3
deps =
Django>=1.5,<1.6
-r{toxinidir}/requirements-test.txt
[testenv:py33-16]
basepython = python3.3
deps =
Django>=1.6,<1.7
-r{toxinidir}/requirements-test.txt