X-Git-Url: https://gerrit.mcp.mirantis.com/gitweb?p=salt-formulas%2Felasticsearch.git;a=blobdiff_plain;f=tests%2Frun_tests.sh;h=976158582d91be1e42605aef36c41fc38dc06dcf;hp=4ee4e0f3a9fc82b726123ccead0110cd0257877f;hb=refs%2Fchanges%2F02%2F15502%2F1;hpb=869a6ccf6ee4f4482a12c5e0a2730e3fe0024cd4;ds=sidebyside diff --git a/tests/run_tests.sh b/tests/run_tests.sh index 4ee4e0f..9761585 100755 --- a/tests/run_tests.sh +++ b/tests/run_tests.sh @@ -39,7 +39,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_mock_bin() { @@ -125,7 +125,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() {