-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtox.ini
More file actions
37 lines (33 loc) · 714 Bytes
/
tox.ini
File metadata and controls
37 lines (33 loc) · 714 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
[tox]
envlist = py27, py33, py34, flake8, readme
[testenv]
deps =
coverage
nose
rednose
commands =
python setup.py install
nosetests --verbosity=2 --with-doctest --all-modules --nocapture --with-coverage --cover-package=decorum --cover-tests decorum tests
coverage erase
pip freeze
[testenv:flake8]
deps =
flake8
commands =
flake8 decorum
[testenv:readme]
deps =
docutils
pygments
commands =
mkdir -p var/docs
rst2html.py --exit-status=2 README.rst var/docs/README.html
rst2html.py --exit-status=2 CONTRIBUTING.rst var/docs/CONTRIBUTING.html
whitelist_externals =
mkdir
[testenv:release]
deps =
wheel
zest.releaser
commands =
fullrelease