浏览代码

Fixed shebang kernel limitation with virtualenv during test run (https://github.com/pypa/virtualenv/issues/596)

Change-Id: I8cdc66e322afeffd83300549bc341f20a2ea4f63
pull/6/merge
Jakub Josef 6 年前
父节点
当前提交
5d955579fd
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      tests/run_tests.sh

+ 2
- 2
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() {

正在加载...
取消
保存