Fixed shebang kernel limitation with virtualenv during test run (https://github.com/pypa/virtualenv/issues/596)
Change-Id: Ie395825daa0bea4fa0fd3c3ec5b4743bb0ab927e
diff --git a/tests/run_tests.sh b/tests/run_tests.sh
index a465159..3155e5d 100755
--- a/tests/run_tests.sh
+++ b/tests/run_tests.sh
@@ -41,7 +41,7 @@
log_info "Setting up Python virtualenv"
virtualenv $VENV_DIR
source ${VENV_DIR}/bin/activate
- pip install salt${PIP_SALT_VERSION}
+ python -m pip install salt${PIP_SALT_VERSION}
}
setup_mock_bin() {
@@ -127,7 +127,7 @@
salt_run() {
[ -e ${VENV_DIR}/bin/activate ] && source ${VENV_DIR}/bin/activate
- salt-call ${SALT_OPTS} $*
+ python $(which salt-call) ${SALT_OPTS} $*
}
prepare() {