From 35dc3b44432d4c1627b9bd6ccb7dc50dd83f17a7 Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Sat, 9 May 2020 11:17:00 -0500 Subject: [PATCH] Issue #101: More attempts to get pip installed. --- tests/molecule.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/molecule.sh b/tests/molecule.sh index c0a6185e..4f13c534 100755 --- a/tests/molecule.sh +++ b/tests/molecule.sh @@ -3,8 +3,11 @@ # Molecule playbook tests. set -e +# Make sure pip3 is available. +sudo apt-get install -y python3-pip + # Install dependencies. -pip install ansible molecule ansible-test yamllint docker +sudo pip3 install ansible molecule ansible-test yamllint docker # Run tests. cd ../molecule