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. Change-Id: I2692646f2f078a8040625375d69b2c3af98d8a9e
This commit is contained in:
parent
d932684889
commit
999f520df6
4
Gemfile
4
Gemfile
@ -1,9 +1,7 @@
|
|||||||
source ENV['GEM_SOURCE'] || "https://rubygems.org"
|
source ENV['GEM_SOURCE'] || "https://rubygems.org"
|
||||||
|
|
||||||
group :development, :test, :system_tests do
|
group :development, :test, :system_tests do
|
||||||
gem 'puppet-openstack_spec_helper',
|
gem 'puppet-openstack_spec_helper', :require => 'false', :git => 'https://git.openstack.org/openstack/puppet-openstack_spec_helper'
|
||||||
:git => 'https://git.openstack.org/openstack/puppet-openstack_spec_helper',
|
|
||||||
:require => false
|
|
||||||
end
|
end
|
||||||
|
|
||||||
if facterversion = ENV['FACTER_GEM_VERSION']
|
if facterversion = ENV['FACTER_GEM_VERSION']
|
||||||
|
11
bindep.txt
11
bindep.txt
@ -0,0 +1,11 @@
|
|||||||
|
# This is a cross-platform list tracking distribution packages needed by tests;
|
||||||
|
# see http://docs.openstack.org/infra/bindep/ for additional information.
|
||||||
|
|
||||||
|
libxml2-devel [test platform:rpm]
|
||||||
|
libxml2-dev [test platform:dpkg]
|
||||||
|
libxslt-devel [test platform:rpm]
|
||||||
|
libxslt1-dev [test platform:dpkg]
|
||||||
|
ruby-devel [test platform:rpm]
|
||||||
|
ruby-dev [test platform:dpkg]
|
||||||
|
zlib1g-dev [test platform:dpkg]
|
||||||
|
zlib-devel [test platform:rpm]
|
3
tox.ini
3
tox.ini
@ -3,6 +3,9 @@ minversion = 1.6
|
|||||||
skipsdist = True
|
skipsdist = True
|
||||||
envlist = releasenotes
|
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]
|
[testenv:releasenotes]
|
||||||
deps = -rtest-requirements.txt
|
deps = -rtest-requirements.txt
|
||||||
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
||||||
|
Loading…
Reference in New Issue
Block a user