From b3c94867e21b567ea1060ab94e110d4fb469f9f2 Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Wed, 9 Sep 2020 21:28:33 -0700 Subject: [PATCH] run tests with verbose logging --- .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 574778a1..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" %s', + run('./run_ansible_playbook.py %s -i "%s" -vvv %s', playbook, HOSTS_DIR, ' '.join(sys.argv[1:])) except: pause_if_interactive()