mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-02 23:31:25 -07: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:
parent
26fa3adeab
commit
8a223009ca
39 changed files with 502 additions and 67 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue