Skip to content

Commit 29063e0

Browse files
authored
Merge pull request #4565 from vincepri/fixup-e2e
e2e: Remove double install
2 parents 24f82c0 + 9a136ed commit 29063e0

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

scripts/ci-e2e.sh

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,8 @@ cleanup() {
4848
trap cleanup EXIT
4949

5050
# Ensure that python3-pip is installed.
51-
apt update
52-
apt install -y python3-pip
53-
rm -rf /var/lib/apt/lists/*
54-
55-
# Install/upgrade pip and requests module explicitly for HTTP calls.
56-
apt update
57-
apt install -y python3-pip python3-requests
51+
apt-get update
52+
apt-get install -y python3-pip python3-requests
5853

5954
# If BOSKOS_HOST is set then acquire an AWS account from Boskos.
6055
if [ -n "${BOSKOS_HOST:-}" ]; then

0 commit comments

Comments
 (0)