From b469da399be1cd464343660e462d5ec9fdd031af Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Sun, 18 Oct 2020 23:25:24 -0700 Subject: [PATCH] localhost_ansible tests now pass, adding -vvv to ansible_tests to get more debug info there --- .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 a7cbc016..c81f9539 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" -v %s', + run('./run_ansible_playbook.py %s -i "%s" -vvv %s', playbook, HOSTS_DIR, ' '.join(sys.argv[1:])) except: pause_if_interactive()