From 5fa9f97b6630b440e54597792f9ab3c6db08f349 Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Sun, 20 Sep 2020 21:11:04 -0700 Subject: [PATCH] ansible.posix.synchronize isn't being loaded in tests but is locally, reducing v count to get around azure devops scroll bug --- .ci/ansible_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/ansible_tests.py b/.ci/ansible_tests.py index c81f9539..a7cbc016 100755 --- a/.ci/ansible_tests.py +++ b/.ci/ansible_tests.py @@ -72,7 +72,7 @@ with ci_lib.Fold('job_setup'): with ci_lib.Fold('ansible'): playbook = os.environ.get('PLAYBOOK', 'all.yml') try: - run('./run_ansible_playbook.py %s -i "%s" -vvv %s', + run('./run_ansible_playbook.py %s -i "%s" -v %s', playbook, HOSTS_DIR, ' '.join(sys.argv[1:])) except: pause_if_interactive()