aboutsummaryrefslogtreecommitdiffstats
path: root/csit/run-csit.sh
diff options
context:
space:
mode:
authorMatthew Watkins <mwatkins@linuxfoundation.org>2022-11-17 16:39:39 -0800
committerMatthew Watkins <mwatkins@linuxfoundation.org>2022-11-17 16:40:28 -0800
commit17cbd7b1b51f8d961ad6a908d12c767497afceb9 (patch)
tree19708a036f44af31e377b388473280e96f451982 /csit/run-csit.sh
parent1cad945fef243480a1cfde8fc04240a39bf00507 (diff)
Fix: Swap prepare-csit.sh to Python3 robot framework
Issue-ID: RELENG-4523 Signed-off-by: Matthew Watkins <mwatkins@linuxfoundation.org> Change-Id: I246f9f76996943826afc7d05796e6ddc5c0de6dc
Diffstat (limited to 'csit/run-csit.sh')
-rwxr-xr-xcsit/run-csit.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/csit/run-csit.sh b/csit/run-csit.sh
index f291e3418..aefcc8539 100755
--- a/csit/run-csit.sh
+++ b/csit/run-csit.sh
@@ -24,7 +24,6 @@
source_safely "${ROBOT3_VENV}/bin/activate"
WORKDIR=$(mktemp -d --suffix=-robot-workdir)
-cd "${WORKDIR}"
#
# functions
@@ -160,6 +159,9 @@ TESTPLANDIR="${WORKSPACE}/${TESTPLAN}"
# Run installation of prerequired libraries
source_safely "${WORKSPACE}/prepare-csit.sh"
+# Use robot framework working directory
+cd "${WORKDIR}"
+
# Add csit scripts to PATH
export PATH="${PATH}:${WORKSPACE}/docker/scripts:${WORKSPACE}/scripts:${ROBOT3_VENV}/bin"
export SCRIPTS="${WORKSPACE}/scripts"