mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 22:33:25 +00:00
Improve handling of integration test aliases. (#38698)
* Include change classification data in metadata. * Add support for disabled tests. * Add support for unstable tests. * Add support for unsupported tests. * Overhaul integration aliases sanity test. * Update Shippable scripts to handle unstable tests. * Mark unstable Azure tests. * Mark unstable Windows tests. * Mark disabled tests.
This commit is contained in:
@@ -162,6 +162,10 @@ class IntegrationConfig(TestConfig):
|
||||
self.start_at_task = args.start_at_task # type: str
|
||||
self.allow_destructive = args.allow_destructive # type: bool
|
||||
self.allow_root = args.allow_root # type: bool
|
||||
self.allow_disabled = args.allow_disabled # type: bool
|
||||
self.allow_unstable = args.allow_unstable # type: bool
|
||||
self.allow_unstable_changed = args.allow_unstable_changed # type: bool
|
||||
self.allow_unsupported = args.allow_unsupported # 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
|
||||
|
||||
Reference in New Issue
Block a user