forked from Supervisor/supervisor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
35 lines (31 loc) · 765 Bytes
/
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
[tox]
envlist =
cover,cover3,docs,py26,py27,py32,py33,py34,py35,pypy,pypy3
[testenv]
deps =
pytest < 3.0.0 # >= 2.5.2 but < 3.0.0. pytest 3.0.0 breaks python 3.2
meld3 >= 1.0.0
mock >= 0.5.0
commands =
py.test {posargs}
[testenv:cover]
basepython = python2.6
commands =
py.test --cov=supervisor --cov-report=term-missing --cov-report=xml {posargs}
deps =
{[testenv]deps}
pytest-cov
[testenv:cover3]
basepython = python3.3
commands =
py.test --cov=supervisor --cov-report=term-missing --cov-report=xml {posargs}
deps =
{[testenv:cover]deps}
[testenv:docs]
deps =
Sphinx
readme
whitelist_externals = make
commands =
make -C docs html BUILDDIR={envtmpdir} "SPHINXOPTS=-W -E"
python setup.py check -m -r -s