- update .gitreview to reference stable branch - update Berksfile to reference stable branch - make sure the docs job runs with python3 - update deployment guide - Add RHEL/CentOS 7 as supported platform Change-Id: I54fbdf07a5f08f83395c96ecc72e8b6b3b994398 Partial-Bug: 1855878
23 lines
574 B
INI
23 lines
574 B
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = docs,deploy-guide
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
basepython = python3
|
|
usedevelop = True
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
deps = -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
|
|
-r{toxinidir}/doc/requirements.txt
|
|
whitelist_externals = rm
|
|
|
|
[testenv:docs]
|
|
commands =
|
|
rm -fr doc/build
|
|
sphinx-build -b html doc/source doc/build/html
|
|
|
|
[testenv:deploy-guide]
|
|
commands =
|
|
rm -rf deploy-guide/build
|
|
sphinx-build -a -E -W -d deploy-guide/build/doctrees -b html deploy-guide/source deploy-guide/build/html
|