Remove the tripleo_job_ansible_args default

This change removes the default '-v' from the environment variable when executing
local tests. This was done to enhance output for the end user by default but the
side effect was that not scenario tests were being executed. This change will ensure
any developers running the local tests are getting the same output we'd expect in
upstream zuul.

Change-Id: I76a1e44cea8140a6760e21946d62a0ecac368a24
Signed-off-by: Kevin Carter <kecarter@redhat.com>
This commit is contained in:
Kevin Carter 2020-01-29 13:14:05 -06:00
parent 00dcda3d49
commit 7d5f37e43c
No known key found for this signature in database
GPG Key ID: CE94BD890A47B20A
1 changed files with 3 additions and 2 deletions

View File

@ -24,7 +24,7 @@ set -xeuo
export PROJECT_DIR="$(dirname $(readlink -f ${BASH_SOURCE[0]}))/../"
export ROLE_NAME="${ROLE_NAME:-$1}"
export TRIPLEO_JOB_ANSIBLE_ARGS=${TRIPLEO_JOB_ANSIBLE_ARGS:-"-v"}
export TRIPLEO_JOB_ANSIBLE_ARGS=${TRIPLEO_JOB_ANSIBLE_ARGS:-""}
export UPPER_CONSTRAINTS_FILE=${UPPER_CONSTRAINTS_FILE:-"https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt"}
## Functions -----------------------------------------------------------------
@ -86,4 +86,5 @@ ansible-playbook -i "${PROJECT_DIR}/tests/hosts.ini" \
-e "ansible_user=${USER}" \
-e "ansible_user_dir=${HOME}" \
"${PROJECT_DIR}/tripleo_ansible/playbooks/prepare-test-host.yml" \
"${PROJECT_DIR}/zuul.d/playbooks/run-local.yml"
"${PROJECT_DIR}/zuul.d/playbooks/run-local.yml" \
-v