tests: fix path to inventory host file in tox-update.ini

the path had `/{env:CONTAINER_DIR:}` which is already added in
`changedir=` section. That led to a wrong path so the initial deployment
couldn't complete.

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
pull/4215/head
Guillaume Abrioux 2019-05-22 13:54:05 +02:00
parent bf17099964
commit 018297957e
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ commands=
ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/setup.yml ansible-playbook -vv -i {changedir}/{env:INVENTORY} {toxinidir}/tests/functional/setup.yml
# deploy the cluster # deploy the cluster
ansible-playbook -vv -i {changedir}/{env:CONTAINER_DIR:}/hosts {toxinidir}/{env:PLAYBOOK:site.yml.sample} --limit 'all:!iscsigws' --extra-vars "\ ansible-playbook -vv -i {changedir}/hosts {toxinidir}/{env:PLAYBOOK:site.yml.sample} --limit 'all:!iscsigws' --extra-vars "\
delegate_facts_host={env:DELEGATE_FACTS_HOST:True} \ delegate_facts_host={env:DELEGATE_FACTS_HOST:True} \
fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \ fetch_directory={env:FETCH_DIRECTORY:{changedir}/fetch} \
ceph_stable_release={env:CEPH_STABLE_RELEASE:jewel} \ ceph_stable_release={env:CEPH_STABLE_RELEASE:jewel} \