diff options
author | ToineSiebelink <toine.siebelink@est.tech> | 2022-11-16 10:50:46 -0800 |
---|---|---|
committer | ToineSiebelink <toine.siebelink@est.tech> | 2022-11-17 11:07:20 -0800 |
commit | aadba882d838316cd353a2b6d54e6e52416e86f7 (patch) | |
tree | d7997f877c7b04d8f54b4a61c8bd5b3e72104e4b /csit/prepare-csit.sh | |
parent | 87e0299bb0bfc688de6d82207477bca0bcc14850 (diff) |
Revert Hack to get CSIT test working
Reverted to using ROBOT3_VENV (tetsing CI-mgmnt uodate)
Issue-ID: RELENG-4523
Signed-off-by: ToineSiebelink <toine.siebelink@est.tech>
Change-Id: I1e8ae6cba2b303042d9f22e1601e9846ebd2f7bf
Diffstat (limited to 'csit/prepare-csit.sh')
-rwxr-xr-x | csit/prepare-csit.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/csit/prepare-csit.sh b/csit/prepare-csit.sh index 739266be27..c40f4c1bfe 100755 --- a/csit/prepare-csit.sh +++ b/csit/prepare-csit.sh @@ -33,14 +33,14 @@ TESTPLANDIR=${WORKSPACE}/${TESTPLAN} if [ -f ${WORKSPACE}/env.properties ]; then source ${WORKSPACE}/env.properties fi -#if [ -f ${ROBOT_VENV}/bin/activate ]; then -# source ${ROBOT_VENV}/bin/activate -#else +if [ -f ${ROBOT_VENV}/bin/activate ]; then + source ${ROBOT_VENV}/bin/activate +else rm -rf /tmp/ci-management rm -f ${WORKSPACE}/env.properties cd /tmp source ${WORKSPACE}/install-robotframework.sh -#fi +fi # install eteutils mkdir -p ${ROBOT_VENV}/src/onap |