From 571d626c53db7e762b3255ccbd850dc13dd91400 Mon Sep 17 00:00:00 2001 From: Jakub Josef Date: Thu, 8 Feb 2018 13:22:16 +0100 Subject: [PATCH] Fixed shebang kernel limitation with virtualenv during test run (https://github.com/pypa/virtualenv/issues/596) Change-Id: Icd6ac120246086aa8f9d52600d45ff249f2a9327 --- tests/run_tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() { -- 2.32.7