diff options
author | Monty Taylor <mordred@inaugust.com> | 2017-08-31 13:26:58 -0500 |
---|---|---|
committer | Monty Taylor <mordred@inaugust.com> | 2017-08-31 15:50:02 -0500 |
commit | b81f2d0a4c304212506333b8f26279f888516904 (patch) | |
tree | d95efb14221e6ab4be037a06cc8ecbd591944c44 /playbooks | |
parent | eb09398678229842f23be128ac01ed2b53d2e3a8 (diff) | |
download | zuul-b81f2d0a4c304212506333b8f26279f888516904.tar.gz |
Remove -vvv from playbook invocation for log streaming test
It's noise.
Change-Id: Iaea359620f5b359b86cf3c2a0f5485876b91fa57
Diffstat (limited to 'playbooks')
-rw-r--r-- | playbooks/zuul-stream/functional.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/playbooks/zuul-stream/functional.yaml b/playbooks/zuul-stream/functional.yaml index 0c7c61741..4f676730d 100644 --- a/playbooks/zuul-stream/functional.yaml +++ b/playbooks/zuul-stream/functional.yaml @@ -1,14 +1,14 @@ - hosts: controller tasks: - - name: Run ansible - command: ansible-playbook -vvv src/git.openstack.org/openstack-infra/zuul/playbooks/zuul-stream/fixtures/test-stream.yaml + - name: Run ansible that should succeed + command: ansible-playbook src/git.openstack.org/openstack-infra/zuul/playbooks/zuul-stream/fixtures/test-stream.yaml environment: ZUUL_JOB_LOG_CONFIG: "{{ ansible_user_dir}}/logging.json" ARA_LOG_CONFIG: "{{ ansible_user_dir}}/logging.json" - name: Run ansible playbook that should fail - command: ansible-playbook -vvv src/git.openstack.org/openstack-infra/zuul/playbooks/zuul-stream/fixtures/test-stream-failure.yaml + command: ansible-playbook src/git.openstack.org/openstack-infra/zuul/playbooks/zuul-stream/fixtures/test-stream-failure.yaml register: failed_results failed_when: "failed_results.rc != 2" environment: |