mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-16 01:45: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
|
@ -229,6 +229,22 @@ def parse_args():
|
|||
action='store_true',
|
||||
help='allow tests requiring root when not root')
|
||||
|
||||
integration.add_argument('--allow-disabled',
|
||||
action='store_true',
|
||||
help='allow tests which have been marked as disabled')
|
||||
|
||||
integration.add_argument('--allow-unstable',
|
||||
action='store_true',
|
||||
help='allow tests which have been marked as unstable')
|
||||
|
||||
integration.add_argument('--allow-unstable-changed',
|
||||
action='store_true',
|
||||
help='allow tests which have been marked as unstable when focused changes are detected')
|
||||
|
||||
integration.add_argument('--allow-unsupported',
|
||||
action='store_true',
|
||||
help='allow tests which have been marked as unsupported')
|
||||
|
||||
integration.add_argument('--retry-on-error',
|
||||
action='store_true',
|
||||
help='retry failed test with increased verbosity')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue