diff --git a/tests/run_tests.sh b/tests/run_tests.sh index ea1a363..7da2a75 100755 --- a/tests/run_tests.sh +++ b/tests/run_tests.sh @@ -37,7 +37,7 @@ setup_virtualenv() { 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_pillar() { @@ -112,7 +112,7 @@ clean() { salt_run() { [ -e ${VENV_DIR}/bin/activate ] && source ${VENV_DIR}/bin/activate - salt-call ${SALT_OPTS} $* + python $(which salt-call) ${SALT_OPTS} $* } prepare() {