From a8c775dfda2e31f2092ab4f8d1f51c8fe4f34b53 Mon Sep 17 00:00:00 2001 From: David Moreau Simard Date: Thu, 25 Feb 2021 17:26:10 -0500 Subject: [PATCH] test-ansible-env-prep: simplify ara setup The intent was to be able to test easily with Depends-On patches with a repository prepared by Zuul but ara is being retired from opendev.org/recordsansible/ara and will no longer be available at that location. Change-Id: I961f58d5b24aa5e11e2a4db39f2daff3c8330063 --- test-ansible-env-prep.sh | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/test-ansible-env-prep.sh b/test-ansible-env-prep.sh index ac131c7c..66ee8692 100755 --- a/test-ansible-env-prep.sh +++ b/test-ansible-env-prep.sh @@ -195,13 +195,8 @@ if [[ ${ID,,} =~ (centos|rhel|fedora) ]]; then PIP_OPTS+=" selinux" fi -# Install ARA from source if running in ARA gate, otherwise install from PyPi -ARA_SRC_HOME="${TESTING_HOME}/src/opendev.org/recordsansible/ara" -if [[ -d "${ARA_SRC_HOME}" ]]; then - PIP_OPTS+=" ${ARA_SRC_HOME}" -else - PIP_OPTS+=" ara[server]" -fi +# Install ARA from PyPi +PIP_OPTS+=" ara[server]" # Install all python packages python -m pip install ${PIP_OPTS}