From 389a67eebcd9684bce319af2a81e1c376c9b87db Mon Sep 17 00:00:00 2001 From: Alex Schultz Date: Wed, 17 May 2017 08:21:20 -0600 Subject: [PATCH] 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: If1b80bbc6fe5bf1c8f49659891add50a5ebcf997 --- Gemfile | 4 +--- bindep.txt | 11 +++++++++++ test-requirements.txt | 4 ++-- tox.ini | 3 +++ 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/Gemfile b/Gemfile index 1fab6085..caddc65d 100644 --- a/Gemfile +++ b/Gemfile @@ -1,9 +1,7 @@ source ENV['GEM_SOURCE'] || "https://rubygems.org" group :development, :test, :system_tests do - gem 'puppet-openstack_spec_helper', - :git => 'https://git.openstack.org/openstack/puppet-openstack_spec_helper', - :require => false + gem 'puppet-openstack_spec_helper', :require => 'false', :git => 'https://git.openstack.org/openstack/puppet-openstack_spec_helper' end if facterversion = ENV['FACTER_GEM_VERSION'] diff --git a/bindep.txt b/bindep.txt index e69de29b..7cdd58e5 100644 --- a/bindep.txt +++ b/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] diff --git a/test-requirements.txt b/test-requirements.txt index a47e6f91..1ea50a84 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,7 +1,7 @@ -# this is required for the docs build jobs +# This is required for the docs build jobs sphinx>=1.5.1 # BSD oslosphinx>=4.7.0 # Apache-2.0 -# this is required for the releasenotes build jobs +# This is required for the releasenotes build jobs # FIXME: reno is manually pinned to !=2.0.0 because of bug #1651995 reno>=1.8.0,!=2.0.0 # Apache-2.0 diff --git a/tox.ini b/tox.ini index aea06c84..cd122cbf 100644 --- a/tox.ini +++ b/tox.ini @@ -3,6 +3,9 @@ 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