As per the governance resolution https://review.openstack.org/119875,
projects should have a docs environment in their tox.ini testing
interface. Add one.
Change-Id: Ib3548bc23713e120089ae29b5c4e851de48cf8d3
(cherry picked from commit 81fa6c7b4bd5a1d57cc095395b9d2ba3eeb6c20f)
| ... | ... |
@@ -11,3 +11,6 @@ install_command = pip install {opts} {packages}
|
| 11 | 11 |
deps = bashate |
| 12 | 12 |
whitelist_externals = bash |
| 13 | 13 |
commands = bash -c "find {toxinidir} -not -wholename \*.tox/\* -and \( -name \*.sh -or -name \*rc -or -name functions\* -or \( -wholename lib/\* -and -not -name \*.md \) \) -print0 | xargs -0 bashate -v"
|
| 14 |
+ |
|
| 15 |
+[testenv:docs] |
|
| 16 |
+commands = python setup.py build_sphinx |