asv.commands¶
Submodules¶
- asv.commands.check
- asv.commands.common_args
- asv.commands.compare
- asv.commands.continuous
- asv.commands.find
- asv.commands.machine
- asv.commands.preview
- asv.commands.profiling
- asv.commands.publish
- asv.commands.quickstart
- asv.commands.rm
- asv.commands.run
- asv.commands.setup
- asv.commands.show
- asv.commands.update
Attributes¶
Classes¶
Helper class that provides a standard way to create an ABC using |
Functions¶
The top-level entry point for the asv script. |
|
Package Contents¶
- asv.commands.command_order = ['Quickstart', 'Machine', 'Setup', 'Run', 'Continuous', 'Find', 'Rm', 'Publish', 'Preview',...[source]¶
- class asv.commands.Command[source]¶
Helper class that provides a standard way to create an ABC using inheritance.
- classmethod setup_arguments(subparsers)[source]¶
- Abstractmethod:
Method to add the parser and arguments of the command.
In most cases, subparser.add_parser(cmd_name) should be called to add the command (where cmd_name is for example run or continuous). And then call add_argument to the returned parser, to add the command arguments.