|
@@ -1,6 +1,6 @@
|
|
[tox]
|
|
[tox]
|
|
envlist =
|
|
envlist =
|
|
- cover,cover3,py26,py27,py32,py33,py34,py35,pypy
|
|
|
|
|
|
+ cover,cover3,py26,py27,py32,py33,py34,py35,pypy,docs
|
|
|
|
|
|
[testenv]
|
|
[testenv]
|
|
deps =
|
|
deps =
|
|
@@ -24,3 +24,11 @@ commands =
|
|
py.test --cov=supervisor --cov-report=term-missing --cov-report=xml {posargs}
|
|
py.test --cov=supervisor --cov-report=term-missing --cov-report=xml {posargs}
|
|
deps =
|
|
deps =
|
|
{[testenv:cover]deps}
|
|
{[testenv:cover]deps}
|
|
|
|
+
|
|
|
|
+[testenv:docs]
|
|
|
|
+deps =
|
|
|
|
+ sphinx
|
|
|
|
+ readme
|
|
|
|
+commands =
|
|
|
|
+ sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
|
|
|
|
+ python setup.py check -m -r -s
|