forked from caktus/django-timepiece
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtox.ini
More file actions
106 lines (94 loc) · 1.82 KB
/
tox.ini
File metadata and controls
106 lines (94 loc) · 1.82 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[tox]
envlist =
py26-1.4, py27-1.4,
py27-1.5, py27-1.5,
py26-1.6, py27-1.6,
py27-1.7
# Note: django-1.7 drops python2.6 support
[default]
deps =
django-jenkins==0.12.1
pylint==0.25.1
coverage==3.5.2
pep8==0.6.1
psycopg2==2.5
Mock==1.0.1
django-bootstrap-toolkit==2.5.6
factory-boy==2.1.1
[trunk]
deps =
django-jenkins>=0.16,<0.17
pylint>=1.3,<1.4
coverage>=3.7,<3.8
pep8>=1.5,<1.6
psycopg2>=2.5,<2.6
Mock==1.0.1
django-bootstrap-toolkit>=2.15,<2.16
factory-boy>=2.4,<2.5
[testenv]
basepython = python2.7
deps =
django==1.4.3
{[default]deps}
setenv =
DJANGO_SETTINGS_MODULE = example_project.example_project.settings.local
PYTHON_PATH = {toxinidir}
commands = {envpython} run_tests.py {posargs}
[testenv:py26-1.4]
basepython = python2.6
setenv =
{[testenv]setenv}
TESTENV = py26-1.4
deps =
django>=1.4,<1.5
{[default]deps}
[testenv:py26-1.5]
basepython = python2.6
setenv =
{[testenv]setenv}
TESTENV = py26-1.5
deps =
django>=1.5,<1.6
{[default]deps}
[testenv:py26-1.6]
basepython = python2.6
setenv =
{[testenv]setenv}
TESTENV = py26-1.6
deps =
django>=1.6,<1.7
{[trunk]deps}
[testenv:py27-1.4]
setenv =
{[testenv]setenv}
TESTENV= py27-1.4
deps =
django>=1.4,<1.5
{[default]deps}
[testenv:py27-1.5]
setenv =
{[testenv]setenv}
TESTENV = py27-1.5
deps =
django>=1.5,<1.6
{[default]deps}
[testenv:py27-1.6]
setenv =
{[testenv]setenv}
TESTENV = py27-1.6
deps =
django>=1.6,<1.7
{[trunk]deps}
[testenv:py27-1.7]
setenv =
{[testenv]setenv}
TESTENV = py27-1.7
deps =
django>=1.7,<1.8
{[trunk]deps}
[testenv:py27-trunk]
setenv =
{[testenv]setenv}
TESTENV = py27-trunk
deps = https://github.com/django/django/zipball/master
{[trunk]deps}