summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2019-01-08 14:03:15 -0800
committerMatt Clay <matt@mystile.com>2019-01-09 23:43:57 -0800
commit935f07b6fa75a08360087633afa5aa82c1ee0922 (patch)
treea52babfba1d92b4e4f26f5ff0d834d9fc5916cea
parent64225c0d2b4099aa11dabefca8dcb9f69846cc6c (diff)
downloadansible-935f07b6fa75a08360087633afa5aa82c1ee0922.tar.gz
[stable-2.6] Disable retry files for integration tests.
(cherry picked from commit 39824f50b10f7deb6be2a31eac01cc6393d7248e) Co-authored-by: Matt Clay <matt@mystile.com>
-rw-r--r--test/runner/lib/ansible_util.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/runner/lib/ansible_util.py b/test/runner/lib/ansible_util.py
index ab2fa54d3d..6b0174affc 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'),