From ccb5f75e13ade560a09fee0651f444954d62a8e5 Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Thu, 21 May 2015 12:42:56 -0700 Subject: [PATCH] Gate against latest stable projects. Change-Id: I3be22d88872c65be07bde495c5bd9fd7b33df397 --- tox.ini | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/tox.ini b/tox.ini index d479d36..fc8589d 100644 --- a/tox.ini +++ b/tox.ini @@ -111,7 +111,7 @@ commands = nosetests -v tests/pecantest [testenv:ceilometer-stable] basepython = python2.7 -deps = -egit+http://git.openstack.org/openstack/ceilometer@stable/icehouse#egg=ceilometer +deps = -egit+http://git.openstack.org/openstack/ceilometer@stable/kilo#egg=ceilometer changedir = {envdir}/src/ceilometer commands = tox -e py27 --notest # ensure a virtualenv is built {envdir}/src/ceilometer/.tox/py27/bin/pip install -U {toxinidir} # install pecan-dev @@ -127,7 +127,7 @@ commands = tox -e py27 --notest # ensure a virtualenv is built [testenv:ironic-stable] basepython = python2.7 -deps = -egit+http://git.openstack.org/openstack/ironic@stable/icehouse#egg=ironic +deps = -egit+http://git.openstack.org/openstack/ironic@stable/kilo#egg=ironic changedir = {envdir}/src/ironic commands = tox -e py27 --notest # ensure a virtualenv is built {envdir}/src/ironic/.tox/py27/bin/pip install -U {toxinidir} # install pecan-dev @@ -141,6 +141,14 @@ commands = tox -e py27 --notest # ensure a virtualenv is built {envdir}/src/ironic/.tox/py27/bin/pip install -U {toxinidir} # install pecan-dev tox -e py27 +[testenv:barbican-stable] +basepython = python2.7 +deps = -egit+http://git.openstack.org/openstack/barbican@stable/kilo#egg=barbican +changedir = {envdir}/src/barbican +commands = tox -e py27 --notest # ensure a virtualenv is built + {envdir}/src/barbican/.tox/py27/bin/pip install -U {toxinidir} # install pecan-dev + tox -e py27 + [testenv:barbican-tip] basepython = python2.7 deps = -egit+http://git.openstack.org/openstack/barbican#egg=barbican @@ -149,17 +157,9 @@ commands = tox -e py27 --notest # ensure a virtualenv is built {envdir}/src/barbican/.tox/py27/bin/pip install -U {toxinidir} # install pecan-dev tox -e py27 -[testenv:storyboard-tip] -basepython = python2.7 -deps = -egit+http://git.openstack.org/openstack-infra/storyboard#egg=storyboard -changedir = {envdir}/src/storyboard -commands = tox -e py27 --notest # ensure a virtualenv is built - {envdir}/src/storyboard/.tox/py27/bin/pip install -U {toxinidir} # install pecan-dev - tox -e py27 - [testenv:designate-stable] basepython = python2.7 -deps = -egit+http://git.openstack.org/openstack/designate@stable/icehouse#egg=designate +deps = -egit+http://git.openstack.org/openstack/designate@stable/kilo#egg=designate changedir = {envdir}/src/designate commands = tox -e py27 --notest # ensure a virtualenv is built {envdir}/src/designate/.tox/py27/bin/pip install -U {toxinidir} # install pecan-dev @@ -173,6 +173,14 @@ commands = tox -e py27 --notest # ensure a virtualenv is built {envdir}/src/designate/.tox/py27/bin/pip install -U {toxinidir} # install pecan-dev tox -e py27 +[testenv:storyboard-tip] +basepython = python2.7 +deps = -egit+http://git.openstack.org/openstack-infra/storyboard#egg=storyboard +changedir = {envdir}/src/storyboard +commands = tox -e py27 --notest # ensure a virtualenv is built + {envdir}/src/storyboard/.tox/py27/bin/pip install -U {toxinidir} # install pecan-dev + tox -e py27 + [testenv:pep8] deps = pep8 commands = pep8 --repeat --show-source pecan setup.py --ignore=E402