From 8f8eadedd6b0bc970ed280ae444fd15b064874a9 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Tue, 7 Jul 2020 19:20:04 +0300 Subject: [PATCH] Run tempest install when tempest_run is False We should run tempest installation when tempest_run is false. We shouldn't run it only when tempest_install is False. Change-Id: I1a3943fd0ae536b72555ef0f74836f0168ce6a21 --- playbooks/os-tempest-install.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/playbooks/os-tempest-install.yml b/playbooks/os-tempest-install.yml index cd007bbcba..aacf7785f8 100644 --- a/playbooks/os-tempest-install.yml +++ b/playbooks/os-tempest-install.yml @@ -31,8 +31,7 @@ - name: End playbook meta: end_play when: - - (not (tempest_install | default(false)) | bool) or - (not (tempest_run | default(false)) | bool) + - (not (tempest_install | default(false)) | bool) roles: - role: "os_tempest"