Parcourir la source

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

Change-Id: I5057111822b6915ed0c7109db64181a2952d0fcf
pull/73/head
Jakub Josef il y a 6 ans
Parent
révision
605e77dc73
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +2
    -2
      tests/run_tests.sh

+ 2
- 2
tests/run_tests.sh Voir le fichier

@@ -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() {

Chargement…
Annuler
Enregistrer