summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorJohn Anderson <sontek@gmail.com>2015-02-09 13:50:29 -0800
committerJohn Anderson <sontek@gmail.com>2015-02-09 13:50:29 -0800
commitc88e3cedf44c257a9dc4c00017114fca3f4e58c0 (patch)
tree89f1022c8a3421bec2f1be063b5a637d26cb95ab /tox.ini
parent3ab9a42fcf43466f233068585f47154fbd34760b (diff)
downloadkafka-python-c88e3cedf44c257a9dc4c00017114fca3f4e58c0.tar.gz
Allow better usage of docs locally.
This will default to the rtd theme and introduces tox -e docs for generating docs locally.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini12
1 files changed, 11 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 71c8993..9ce36b1 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,6 @@
[tox]
-envlist = lint, py26, py27, pypy, py33, py34
+envlist = lint, py26, py27, pypy, py33, py34, docs
+
[testenv]
deps =
six
@@ -37,3 +38,12 @@ deps =
mock
pylint
commands = pylint {posargs: -E kafka test}
+
+[testenv:docs]
+deps =
+ sphinxcontrib-napoleon
+ sphinx_rtd_theme
+ sphinx
+
+commands =
+ sphinx-build -b html docs/ docs/_build