diff options
author | Matthew Watkins <mwatkins@linuxfoundation.org> | 2022-11-17 16:39:39 -0800 |
---|---|---|
committer | Matthew Watkins <mwatkins@linuxfoundation.org> | 2022-11-17 16:40:28 -0800 |
commit | 17cbd7b1b51f8d961ad6a908d12c767497afceb9 (patch) | |
tree | 19708a036f44af31e377b388473280e96f451982 /csit/run-csit.sh | |
parent | 1cad945fef243480a1cfde8fc04240a39bf00507 (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-x | csit/run-csit.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/csit/run-csit.sh b/csit/run-csit.sh index f291e34183..aefcc8539f 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" |