From 2b23e4316f4a88bb883fe0903f1655d768873ba8 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Thu, 28 Mar 2019 09:24:35 +0100 Subject: [PATCH] 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 --- scripts/build_utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5