Generate api doc when running tox 05/35105/2
authorCédric Ollivier <cedric.ollivier@orange.com>
Sun, 21 May 2017 10:27:24 +0000 (12:27 +0200)
committerCédric Ollivier <cedric.ollivier@orange.com>
Sun, 21 May 2017 11:19:18 +0000 (13:19 +0200)
Change-Id: I78b18981d9f916e6174d44c6280706e404c7c9f2
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
test-requirements.txt
tox.ini

index 1874bb1..9fe4bc7 100644 (file)
@@ -10,3 +10,4 @@ mock==1.3.0
 nose==1.3.7
 flake8>=2.5.4,<2.6.0 # MIT
 pylint==1.4.5 # GPLv2
+sphinx!=1.6.1,>=1.5.1 # BSD
diff --git a/tox.ini b/tox.ini
index db4f892..c59e46c 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,7 +1,8 @@
 [tox]
-envlist = pep8,pylint,py27
+envlist = docs,pep8,pylint,py27
 
 [testenv]
+usedevelop = True
 deps =
   -r{toxinidir}/requirements.txt
   -r{toxinidir}/test-requirements.txt
@@ -13,6 +14,10 @@ commands = nosetests --with-xunit \
   --cover-html \
   functest/tests/unit
 
+[testenv:docs]
+basepython = python2.7
+commands = sphinx-build -b html docs/api/ docs/api/_build
+
 [testenv:pep8]
 basepython = python2.7
 deps =