1d7f3d7b05
1) Update tox configuration 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. 2) beaker: stop deploying glance-registry and glance v1 API The API and services are deprecated and marked as removed for Pike. Change-Id: I860ecb2a49fb1feb3a4a24d5ee8271161e4ccc0a Co-Authored-By: Emilien Macchi <emilien@redhat.com>
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
|