e6aec1f199
Update the tox configuration to pull in the openstack upper-constraints.txt when running releasenotes. This will fix the releasenotes job that is currently failing due to a new version of sphinx. Additionally this change includes updates from puppet-modulesync-configs. Change-Id: I290282a1cffa598c3e64be41c902102980f424e6
12 lines
406 B
INI
12 lines
406 B
INI
[tox]
|
|
minversion = 1.6
|
|
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]
|
|
deps = -rtest-requirements.txt
|
|
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|