added option to ansible-test to run test playbooks using the debug strategy (#26499)

This commit is contained in:
David Newswanger 2017-07-07 15:37:08 -04:00 committed by Matt Clay
parent 3050856f2a
commit 294c0f91c0
4 changed files with 9 additions and 1 deletions

View file

@ -183,7 +183,7 @@ def delegate_docker(args, exclude, require):
cmd_options = []
if isinstance(args, ShellConfig):
if isinstance(args, ShellConfig) or (isinstance(args, IntegrationConfig) and args.debug_strategy):
cmd_options.append('-it')
with tempfile.NamedTemporaryFile(prefix='ansible-source-', suffix='.tgz') as local_source_fd: