diff options
author | Toine Siebelink <toine.siebelink@est.tech> | 2022-11-18 00:23:32 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-11-18 00:23:32 +0000 |
commit | 1cad945fef243480a1cfde8fc04240a39bf00507 (patch) | |
tree | 5d1e35832fe1f45a337da4bf141c2551d9e94b1a /csit | |
parent | 46d6e4fddd4c2a955c685f006f76053205cfc4ec (diff) | |
parent | aadba882d838316cd353a2b6d54e6e52416e86f7 (diff) |
Merge "Revert Hack to get CSIT test working Reverted to using ROBOT3_VENV (tetsing CI-mgmnt uodate)"
Diffstat (limited to 'csit')
-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 |