diff options
author | 2022-11-21 15:45:54 -0600 | |
---|---|---|
committer | 2022-11-21 19:39:40 -0600 | |
commit | 71bbc8699f57ffc08c442bbb448261b6ee0fba70 (patch) | |
tree | 33d6aaefefd90d89f2fa9a06503c6968bbfbc186 /csit/run-csit.sh | |
parent | dced5a4579a2a7f0a45f62f074cb16957fc64671 (diff) |
Fix: replace ROBOT_VENV with ROBOT3_VENV
Issue-ID: CIMAN-33
Signed-off-by: Kevin Sandi <ksandi@contractor.linuxfoundation.org>
Change-Id: I4a1dd61c364f807216b65bf38095d7dedd55c6c6
Diffstat (limited to 'csit/run-csit.sh')
-rwxr-xr-x | csit/run-csit.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/csit/run-csit.sh b/csit/run-csit.sh index e23e84a3..6a073e50 100755 --- a/csit/run-csit.sh +++ b/csit/run-csit.sh @@ -25,6 +25,8 @@ # functions # +echo "---> run-csit.sh" + function on_exit(){ rc=$? if [[ ${WORKSPACE} ]]; then @@ -156,13 +158,13 @@ TESTPLANDIR="${WORKSPACE}/${TESTPLAN}" source_safely "${WORKSPACE}/prepare-csit.sh" # Activate the virtualenv containing all the required libraries installed by prepare-csit.sh -source_safely "${ROBOT_VENV}/bin/activate" +source_safely "${ROBOT3_VENV}/bin/activate" WORKDIR=$(mktemp -d --suffix=-robot-workdir) cd "${WORKDIR}" # Add csit scripts to PATH -export PATH="${PATH}:${WORKSPACE}/docker/scripts:${WORKSPACE}/scripts:${ROBOT_VENV}/bin" +export PATH="${PATH}:${WORKSPACE}/docker/scripts:${WORKSPACE}/scripts:${ROBOT3_VENV}/bin" export SCRIPTS="${WORKSPACE}/scripts" export ROBOT_VARIABLES= |