diff options
author | Felix Fontein <felix@fontein.de> | 2020-05-13 22:58:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-13 22:58:09 +0200 |
commit | 0e15375ffeb27376b95e4ceed50a85cbc0e75b4c (patch) | |
tree | 7c1952edfb8023b90c82451e24d19eb38bdb99b0 /docs/docsite | |
parent | only show_vars when showing vars (#69365) (diff) | |
download | ansible-0e15375ffeb27376b95e4ceed50a85cbc0e75b4c.tar.xz ansible-0e15375ffeb27376b95e4ceed50a85cbc0e75b4c.zip |
Add deprecated removed_in_version and deprecated_aliases version tests (#66920)
Diffstat (limited to 'docs/docsite')
-rw-r--r-- | docs/docsite/rst/dev_guide/testing_validate-modules.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/docsite/rst/dev_guide/testing_validate-modules.rst b/docs/docsite/rst/dev_guide/testing_validate-modules.rst index 53aeea0a9d..22b39085fe 100644 --- a/docs/docsite/rst/dev_guide/testing_validate-modules.rst +++ b/docs/docsite/rst/dev_guide/testing_validate-modules.rst @@ -61,7 +61,11 @@ Codes ============================================================ ================== ==================== ========================================================================================= **Error Code** **Type** **Level** **Sample Message** ------------------------------------------------------------ ------------------ -------------------- ----------------------------------------------------------------------------------------- + ansible-deprecated-version Documentation Error A feature is deprecated and supposed to be removed in the current or an earlier Ansible version + ansible-invalid-version Documentation Error The Ansible version at which a feature is supposed to be removed cannot be parsed ansible-module-not-initialized Syntax Error Execution of the module did not result in initialization of AnsibleModule + collection-deprecated-version Documentation Error A feature is deprecated and supposed to be removed in the current or an earlier collection version + collection-invalid-version Documentation Error The collection version at which a feature is supposed to be removed cannot be parsed (it must be a semantic version, see https://semver.org/) deprecation-mismatch Documentation Error Module marked as deprecated or removed in at least one of the filename, its metadata, or in DOCUMENTATION (setting DOCUMENTATION.deprecated for deprecation or removing all Documentation for removed) but not in all three places. doc-choices-do-not-match-spec Documentation Error Value for "choices" from the argument_spec does not match the documentation doc-choices-incompatible-type Documentation Error Choices value from the documentation is not compatible with type defined in the argument_spec |