The cookiecutter underwent a lot of cleanup in docs and testing, unfortunately placement was cut before those were merged so this applies those changes. [1] [2] [3] [4] [5] [1] https://review.openstack.org/#/c/624624/ [2] https://review.openstack.org/#/c/624338/ [3] https://review.openstack.org/#/c/614803/ [4] https://review.openstack.org/#/c/610859/ [5] https://review.openstack.org/#/c/622925/ Change-Id: I35903872a9cd3dcaafed4d03fc9b57f04474b087
13 lines
438 B
INI
13 lines
438 B
INI
[tox]
|
|
minversion = 2.0
|
|
skipsdist = True
|
|
envlist = releasenotes
|
|
|
|
[testenv]
|
|
install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages}
|
|
|
|
[testenv:releasenotes]
|
|
basepython = python3
|
|
deps = -r{toxinidir}/doc/requirements.txt
|
|
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|