-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
143 lines (111 loc) · 2.26 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
[tox]
envlist =
pep8,
pypy-1.3.7,
pypy-1.4.10,
pypy-1.5.5,
pypy-1.6,
py26-1.3.7,
py26-1.4.10,
py26-1.5.5,
py26-1.6,
py27-1.3.7,
py27-1.4.10,
py27-1.5.5,
py27-1.6,
py33-1.5.5,
py33-1.6,
coverage
[testenv]
usedevelop = True
recreate = False
deps =
django-celery==3.0.23
django-discover-runner==1.0
redis==2.8.0
commands =
django-admin.py test --settings=geoip.test_settings geoip
[testenv:pep8]
deps =
flake8==2.1.0
commands =
flake8 --exclude=migrations --ignore="F403" geoip
[testenv:coverage]
deps =
coverage==3.7
django==1.6
setenv =
DJANGO_SETTINGS_MODULE=geoip.test_settings
commands =
coverage run --branch --source=geoip {envbindir}/django-admin.py test geoip
coverage report --omit="geoip/test*,geoip/migrations/*,geoip/management/*"
[testenv:pypy-1.3.7]
basepython = pypy
deps =
{[testenv]deps}
django==1.3.7
[testenv:pypy-1.4.10]
basepython = pypy
deps =
{[testenv]deps}
django==1.4.10
[testenv:pypy-1.5.5]
basepython = pypy
deps =
{[testenv]deps}
django==1.5.5
[testenv:pypy-1.6]
basepython = pypy
deps =
{[testenv]deps}
django==1.6
[testenv:py26-1.3.7]
basepython = python2.6
deps =
{[testenv]deps}
django==1.3.7
[testenv:py26-1.4.10]
basepython = python2.6
deps =
{[testenv]deps}
django==1.4.10
[testenv:py26-1.5.5]
basepython = python2.6
deps =
{[testenv]deps}
django==1.5.5
[testenv:py26-1.6]
basepython = python2.6
deps =
{[testenv]deps}
django==1.6
[testenv:py27-1.3.7]
basepython = python2.7
deps =
{[testenv]deps}
django==1.3.7
[testenv:py27-1.4.10]
basepython = python2.7
deps =
{[testenv]deps}
django==1.4.10
[testenv:py27-1.5.5]
basepython = python2.7
deps =
{[testenv]deps}
django==1.5.5
[testenv:py27-1.6]
basepython = python2.7
deps =
{[testenv]deps}
django==1.6
[testenv:py33-1.5.5]
basepython = python3.3
deps =
{[testenv]deps}
django==1.5.5
[testenv:py33-1.6]
basepython = python3.3
deps =
{[testenv]deps}
django==1.6