ソースを参照

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

Change-Id: I5057111822b6915ed0c7109db64181a2952d0fcf
pull/73/head
Jakub Josef 6年前
コミット
605e77dc73
1個のファイルの変更2行の追加2行の削除
  1. +2
    -2
      tests/run_tests.sh

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

読み込み中…
キャンセル
保存