commit e87baa0c15160b686f0f4e17e676b1942b4004a4
Author: Dmitriy Rabotyagov <drabotyagov@vexxhost.com>
Date:   Tue Jul 7 19:20:04 2020 +0300

    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
    (cherry picked from commit 8f8eadedd6b0bc970ed280ae444fd15b064874a9)

diff --git a/playbooks/os-tempest-install.yml b/playbooks/os-tempest-install.yml
index 42b0344..4942dd4 100644
--- a/playbooks/os-tempest-install.yml
+++ b/playbooks/os-tempest-install.yml
@@ -30,8 +30,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"