Use local version of the include script 89/121689/1
authorarkadiusz.adamski <aadamski@est.tech>
Thu, 3 Jun 2021 15:09:29 +0000 (16:09 +0100)
committerarkadiusz.adamski <aadamski@est.tech>
Thu, 3 Jun 2021 15:09:29 +0000 (16:09 +0100)
- Use local version of the include-raw-integration-install-robotframework.sh script
- correct name of pip python module

Issue-ID: POLICY-3092
Signed-off-by: arkadiusz.adamski <aadamski@est.tech>
Change-Id: Iba43621b3c8aebfa715cee91a75fd6832ccbc2be

csit/include-raw-integration-install-robotframework.sh
csit/prepare-csit.sh

index 65b838b..8375e73 100644 (file)
@@ -26,9 +26,9 @@ source "${ROBOT_VENV}/bin/activate"
 set -exu
 
 # Make sure pip3 itself us up-to-date.
-python3 -m pip3 install --upgrade pip3
+python3 -m pip install --upgrade pip
 
 echo "Installing Python Requirements"
-python3 -m pip3 install -r pylibs.txt
+python3 -m pip install -r pylibs.txt
 odltools -V
 pip3 freeze
index d9c6f55..e154a12 100755 (executable)
@@ -24,20 +24,15 @@ if [ -z "$WORKSPACE" ]; then
 fi
 
 # Assume that if ROBOT_VENV is set and virtualenv with system site packages can be activated,
-# ci-management/jjb/integration/include-raw-integration-install-robotframework.sh has already
-# been executed
+# include-raw-integration-install-robotframework.sh has already been executed
 
 if [ -f ${WORKSPACE}/env.properties ]; then
     source ${WORKSPACE}/env.properties
 fi
 if [ -f ${ROBOT_VENV}/bin/activate ]; then
     source ${ROBOT_VENV}/bin/activate
-elif [ ! -d /tmp/ci-management ]; then
-    rm -rf /tmp/ci-management
-    rm -f ${WORKSPACE}/env.properties
-    cd /tmp
-    git clone -b master --single-branch https://github.com/onap/ci-management.git
-    source /tmp/ci-management/jjb/integration/include-raw-integration-install-robotframework.sh
+else
+    source ./include-raw-integration-install-robotframework.sh
 fi