From: Guillaume Abrioux Date: Thu, 28 Mar 2019 08:24:35 +0000 (+0100) Subject: start_tox: list scenario in the corresponding tox ini file X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F1268%2Fhead;p=ceph-build.git start_tox: list scenario in the corresponding tox ini file since a split of the tox ini file has been introduced in ceph-ansible, we must compare the scenario by listing them in the right tox ini file according to the scenario being run. Signed-off-by: Guillaume Abrioux --- diff --git a/scripts/build_utils.sh b/scripts/build_utils.sh index 50353273..59db3c13 100644 --- a/scripts/build_utils.sh +++ b/scripts/build_utils.sh @@ -762,7 +762,7 @@ case $SCENARIO in ;; esac -for tox_env in $("$VENV"/tox -l) +for tox_env in $("$VENV"/tox -c "$TOX_INI_FILE" -l) do if [[ "$ENV_NAME" == "$tox_env" ]]; then # shellcheck disable=SC2116