Revert "Add the possibility to work without python virtualenv"

This reverts commit f5eed8b7fb.

Change-Id: Ibc1e0e2471ccde8beb3a2f50a19014425c5f71e9
This commit is contained in:
Aleksandra Fedorova 2014-12-22 15:36:20 +00:00
parent f5eed8b7fb
commit 02b24f42f4

View File

@ -359,13 +359,15 @@ RunTest() {
fi
fi
if [ -z "${VENV_PATH}" ]; then
VENV_PATH="/home/jenkins/venv-nailgun-tests"
fi
# run python virtualenv
if [ -n "$VENV_PATH" ]; then
if [ "${DRY_RUN}" = "yes" ]; then
echo source $VENV_PATH/bin/activate
else
source $VENV_PATH/bin/activate
fi
if [ "${DRY_RUN}" = "yes" ]; then
echo . $VENV_PATH/bin/activate
else
. $VENV_PATH/bin/activate
fi
if [ "${ENV_NAME}" = "" ]; then