-
Notifications
You must be signed in to change notification settings - Fork 343
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Man page updates #5842
Man page updates #5842
Conversation
When registering an option and setting a metavar, and then later adding a command line option, the metavar will get reset (to None) if one is not given again. Let's respect the previously set metavar, if one exists. As an example where this manifests, the "--show" option of the "avocado" command line option, currently lacks a metavar even with one being set for the setting itself. Signed-off-by: Cleber Rosa <[email protected]>
Signed-off-by: Cleber Rosa <[email protected]>
This updates the man page to cover all current commands, and its options. Signed-off-by: Cleber Rosa <[email protected]>
Instead of having documentation only on the man page, or duplicated that will often bitrot, let's have most of it in the main documentation section. In the case of the distro plugin, the only documentation available was on the man page, which is very often not consulted by users. Signed-off-by: Cleber Rosa <[email protected]>
Wrapper support was removed back in d4b365a. Let's sync the man page. Signed-off-by: Cleber Rosa <[email protected]>
There are a number of small differences between the behavior and output depicted in the man page and the current status. This syncs them all. Signed-off-by: Cleber Rosa <[email protected]>
Dear contributor,
As for the Avocado utility modules (“avocado.utils”) it is OK to introduce new functionality, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM thanks
This is a collection of updates to the man page in preparation for the 103.0 LTS release.
Fixes: #5050