
Convert existing documentation into RST format so that it can be included in published format at http://docs.openstack.org/infra/ The doc/source files are autogenerated using sphinx-quickstart except doc/source/third_party_ci.rst which is the rst version of contrib/README.md autogenerated using pandoc. A few modifications were made per reviewer comments to improve the clarity and grammar. In addition, relative paths were updated to absolute paths so that they are correct for both the .md and .rst file locations. Change-Id: I336fe7d23b920f60a59e657f10ec5781fa5510f5
16 lines
268 B
INI
16 lines
268 B
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = docs
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = pip install {opts} {packages}
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:docs]
|
|
commands = python setup.py build_sphinx
|