From 6c61b5082f02d7027233197855b343b8cc3ba9bd Mon Sep 17 00:00:00 2001 From: Mark Goddard Date: Tue, 17 Mar 2020 09:25:28 +0000 Subject: [PATCH] CI: Install tox tox will be removed from the base image. Install it before that happens. This change is made in a simple way that can be easily backported. Change-Id: I2a24c87aa44c1e03ba76a2fb0bd71caf54eb4211 (cherry picked from commit a81413fc52b0eaf1eefc3302ba425ac9b93d5a4d) --- tests/playbooks/pre.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/playbooks/pre.yml b/tests/playbooks/pre.yml index e721d88592..b7f5a64912 100644 --- a/tests/playbooks/pre.yml +++ b/tests/playbooks/pre.yml @@ -15,3 +15,8 @@ file: path: "{{ kolla_build_logs_dir }}" state: directory + + - name: Ensure tox is installed + pip: + name: tox + become: true