From 6858e3d84f2e87eb18e5e7e6495ffd367e7b3756 Mon Sep 17 00:00:00 2001 From: Thomas Woerner Date: Tue, 20 Jul 2021 09:46:59 +0200 Subject: [PATCH] Install pip3 for ansible installation Related: rhbz#1947473 --- tests/sanity/runtest.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/sanity/runtest.sh b/tests/sanity/runtest.sh index abe2cf2..359ef0c 100644 --- a/tests/sanity/runtest.sh +++ b/tests/sanity/runtest.sh @@ -1,5 +1,8 @@ #!/bin/sh -eux +# Install python3 and python3-pip +dnf -y install python3 python3-pip + # Use pip3 to install ansible (2.9) pip3 install "ansible>=2.9,<2.10"