Skip to content

Commit 6c0ea31

Browse files
committed
Don't use sudo with pip3 installs in test environments.
1 parent 583d2cb commit 6c0ea31

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/collection.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ sudo apt-get install -y python3-pip python3-setuptools
99
pip3 install --upgrade setuptools pip
1010

1111
# Install dependencies.
12-
sudo pip3 install ansible
12+
pip3 install ansible
1313

1414
cd collection
1515

tests/molecule.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pip3 install --upgrade setuptools pip
1212
curl https://gist.githubusercontent.com/geerlingguy/ce883ad4aec6a5f1187ef93bd338511e/raw/36612d28981d92863f839c5aefe5b7dd7193d6c6/travis-ci-docker-upgrade.sh | sudo bash
1313

1414
# Install dependencies.
15-
sudo pip3 install ansible molecule ansible-lint yamllint docker
15+
pip3 install ansible molecule ansible-lint yamllint docker
1616

1717
cd molecule
1818

tests/orchestration.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ sudo apt-get install -y python3-pip python3-setuptools
99
pip3 install --upgrade setuptools pip
1010

1111
# Install dependencies.
12-
sudo pip3 install ansible
12+
pip3 install ansible
1313

1414
cd orchestration/scripts
1515

0 commit comments

Comments
 (0)