mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-30 06:11:26 -07:00
Multiple ansible-test fixes. (#38247)
* Add ansible-test integration --allow-root option. * Fix destructive target override. * Fix bad type hint SanityResult -> TestResult. * Fix skip/python3 filtering with --docker option.
This commit is contained in:
parent
f37a44430f
commit
a5cbc0a2c8
15 changed files with 32 additions and 25 deletions
|
@ -160,7 +160,8 @@ class IntegrationConfig(TestConfig):
|
|||
|
||||
self.start_at = args.start_at # type: str
|
||||
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.allow_destructive = args.allow_destructive # type: bool
|
||||
self.allow_root = args.allow_root # type: bool
|
||||
self.retry_on_error = args.retry_on_error # type: bool
|
||||
self.continue_on_error = args.continue_on_error # type: bool
|
||||
self.debug_strategy = args.debug_strategy # type: bool
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue