Fix tox.ini to work with ansible 2.2.1.0

Ansible 2.2.1.0 requires included vars files to exist even if the
task/play that includes the file is never run (based on a conditional).

This patch fixes that by ensuring the "upgrade" previous version of
test-vars is fetched for every test.

Change-Id: I81ff74782b34090b29dfd49b04e511178ed1914f
This commit is contained in:
Andy McCrae 2017-01-18 17:37:35 +00:00
parent 590bc91096
commit 15d00f7e63
1 changed files with 4 additions and 4 deletions

View File

@ -59,6 +59,10 @@ commands =
bash -c "if [ ! -d "{toxinidir}/tests/common" ]; then \
git clone https://git.openstack.org/openstack/openstack-ansible-tests {toxinidir}/tests/common; \
fi"
bash -c "if [ ! -d "{toxinidir}/tests/common/previous" ]; then \
git clone https://git.openstack.org/openstack/openstack-ansible-tests -b stable/newton \
{toxinidir}/tests/common/previous; \
fi"
[testenv:pep8]
@ -118,10 +122,6 @@ setenv =
ANSIBLE_PARAMETERS=-vvv -e neutron_upgrade=True
commands =
{[testenv:tests_clone]commands}
bash -c "if [ ! -d "{toxinidir}/tests/common/previous" ]; then \
git clone https://git.openstack.org/openstack/openstack-ansible-tests -b stable/newton \
{toxinidir}/tests/common/previous; \
fi"
bash -c "{toxinidir}/tests/test-neutron-upgrades.sh"
[testenv:func_ovs]