From cbfa01f69755dad5b4e569a9ddf055f8d8850bab Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Mon, 2 Dec 2019 15:16:39 +0100 Subject: [PATCH] tests: fix update scenario (container) The path to the inventory isn't correct because we are missing the variable `CONTAINER_DIR` here. Signed-off-by: Guillaume Abrioux --- tox-update.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox-update.ini b/tox-update.ini index 6764b0407..e383d2604 100644 --- a/tox-update.ini +++ b/tox-update.ini @@ -51,7 +51,7 @@ commands= git clone -b stable-3.1 --single-branch https://github.com/ceph/ceph-ansible.git {envdir}/tmp/ceph-ansible pip install -r {envdir}/tmp/ceph-ansible/tests/requirements.txt - ansible-playbook -vv -i {envdir}/tmp/ceph-ansible/tests/functional/all_daemons/{env:INVENTORY} {envdir}/tmp/ceph-ansible/tests/functional/setup.yml + ansible-playbook -vv -i {envdir}/tmp/ceph-ansible/tests/functional/all_daemons{env:CONTAINER_DIR:}/{env:INVENTORY} {envdir}/tmp/ceph-ansible/tests/functional/setup.yml # deploy the cluster ansible-playbook -vv -i {envdir}/tmp/ceph-ansible/tests/functional/all_daemons{env:CONTAINER_DIR:}/hosts {envdir}/tmp/ceph-ansible/{env:PLAYBOOK:site.yml.sample} --limit 'all:!iscsigws' --extra-vars "\ -- 2.39.5