-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
52 lines (38 loc) · 891 Bytes
/
tox.ini
File metadata and controls
52 lines (38 loc) · 891 Bytes
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
[tox]
envlist = {py27,py34,py35}-wagtail{15,16,17,18,19,110,111,112,113},flake8,coverage
[testenv]
commands =
coverage run {envbindir}/django-admin.py test
setenv =
DJANGO_SETTINGS_MODULE=app.settings
PYTHONPATH={toxinidir}
deps =
flake8
mock==2.0.0
wagtail15: wagtail>=1.5,<1.6
wagtail16: wagtail>=1.6,<1.7
wagtail17: wagtail>=1.7,<1.8
wagtail18: wagtail>=1.8,<1.9
wagtail19: wagtail>=1.9,<1.10
wagtail110: wagtail>=1.10,<1.11
wagtail111: wagtail>=1.11,<1.12
wagtail112: wagtail>=1.12,<1.13
wagtail113: wagtail>=1.13,<1.14
coverage==4.2.0
factory-boy==2.8.1
[testenv:py27]
basepython=python2.7
[testenv:py34]
basepython=python3.4
[testenv:py35]
basepython=python3.5
[testenv:flake8]
commands = flake8 .
deps =
flake8
[testenv:coverage]
commands =
coverage combine
coverage report
deps =
coverage