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

@ -140,6 +140,7 @@ class IntegrationConfig(TestConfig):
self.start_at_task = args.start_at_task # type: str
self.allow_destructive = args.allow_destructive if 'allow_destructive' in args else False # type: bool
self.retry_on_error = args.retry_on_error # type: bool
self.debug_strategy = args.debug_strategy # type: bool
self.tags = args.tags
self.skip_tags = args.skip_tags
self.diff = args.diff