forked from jazzband/django-floppyforms
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtox.ini
More file actions
35 lines (32 loc) · 691 Bytes
/
tox.ini
File metadata and controls
35 lines (32 loc) · 691 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
[tox]
minversion = 1.8
envlist =
docs,
flake8,
py26-{14,15,16},
py27-{14,15,16,17,18,19},
py32-{15,16,17,18},
py33-{15,16,17,18},
py34-{15,16,17,18,19},
py35-{18,19},
pypy-{14,15,16,17,18,19}
[testenv]
deps =
14: Django >= 1.4, < 1.5
15: Django >= 1.5, < 1.6
16: Django >= 1.6, < 1.7
17: Django >= 1.7, < 1.8
18: Django >= 1.8, < 1.9
19: Django >= 1.9, < 1.10
-r{toxinidir}/requirements/tests.txt
commands = python runtests.py
[testenv:docs]
changedir = docs
deps =
Sphinx
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
[testenv:flake8]
deps =
flake8
commands = flake8 floppyforms