Fixed shebang kernel limitation with virtualenv during test run (https://github.com/pypa/virtualenv/issues/596)
Change-Id: I2725d0e0754fed6f0732d9ef5c47adccc3a248cf
diff --git a/tests/run_tests.sh b/tests/run_tests.sh
index 7bd7278..35929b5 100755
--- a/tests/run_tests.sh
+++ b/tests/run_tests.sh
@@ -44,10 +44,10 @@
log_info "Setting up Python virtualenv"
virtualenv $VENV_DIR
source ${VENV_DIR}/bin/activate
- pip install salt${PIP_SALT_VERSION}
- pip install reno
+ python -m pip install salt${PIP_SALT_VERSION}
+ python -m pip install reno
if [[ -f ${CURDIR}/pip_requirements.txt ]]; then
- pip install -r ${CURDIR}/pip_requirements.txt
+ python -m pip install -r ${CURDIR}/pip_requirements.txt
fi
}
@@ -150,7 +150,7 @@
salt_run() {
[ -e ${VENV_DIR}/bin/activate ] && source ${VENV_DIR}/bin/activate
- salt-call ${SALT_OPTS} $*
+ python $(which salt-call) ${SALT_OPTS} $*
}
prepare() {