Skip to content

Commit

Permalink
CI: Fix "error: externally-managed-environment" in CSI
Browse files Browse the repository at this point in the history
PR #2414 missed fixing this for Cinder and Manila e2e tests, this makes
sure these tests work too.
  • Loading branch information
dulek authored and kayrus committed Oct 10, 2023
1 parent 4779767 commit c4f06be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/ci-csi-cinder-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ cleanup() {
}
trap cleanup EXIT

python3 -m pip install requests ansible
apt-get update
apt-get install -y python3-requests ansible

# If BOSKOS_HOST is set then acquire a resource of type ${RESOURCE_TYPE} from Boskos.
if [ -n "${BOSKOS_HOST:-}" ]; then
Expand Down
3 changes: 2 additions & 1 deletion tests/ci-csi-manila-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ cleanup() {
}
trap cleanup EXIT

python3 -m pip install requests ansible
apt-get update
apt-get install -y python3-requests ansible

# If BOSKOS_HOST is set then acquire a resource of type ${RESOURCE_TYPE} from Boskos.
if [ -n "${BOSKOS_HOST:-}" ]; then
Expand Down

0 comments on commit c4f06be

Please sign in to comment.