From 39824f50b10f7deb6be2a31eac01cc6393d7248e Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Tue, 8 Jan 2019 14:03:15 -0800 Subject: [PATCH] Disable retry files for integration tests. --- test/runner/lib/ansible_util.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/runner/lib/ansible_util.py b/test/runner/lib/ansible_util.py index ab2fa54d3d1..6b0174affcc 100644 --- a/test/runner/lib/ansible_util.py +++ b/test/runner/lib/ansible_util.py @@ -40,6 +40,7 @@ def ansible_environment(args, color=True): ANSIBLE_FORCE_COLOR='%s' % 'true' if args.color and color else 'false', ANSIBLE_DEPRECATION_WARNINGS='false', ANSIBLE_HOST_KEY_CHECKING='false', + ANSIBLE_RETRY_FILES_ENABLED='false', ANSIBLE_CONFIG=os.path.abspath(ansible_config), ANSIBLE_LIBRARY='/dev/null', PYTHONPATH=os.path.abspath('lib'),