From a81413fc52b0eaf1eefc3302ba425ac9b93d5a4d 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 --- tests/playbooks/pre.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/playbooks/pre.yml b/tests/playbooks/pre.yml index 526b830faf..d82198382f 100644 --- a/tests/playbooks/pre.yml +++ b/tests/playbooks/pre.yml @@ -17,3 +17,8 @@ file: path: "{{ kolla_build_logs_dir }}" state: directory + + - name: Ensure tox is installed + pip: + name: tox + become: true