X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=yardstick%2Fcmd%2Fcommands%2Fplugin.py;h=b90ac15e63f5a1a61e4c11cbbcd8760fbafef882;hb=5ad208bd8d0c1798179de226f28f1e1ec03033fa;hp=c3e951e8c754758a3692a24fbb57505084c29267;hpb=f07176fddfce0e919cc791092cdd968fdf661346;p=yardstick.git diff --git a/yardstick/cmd/commands/plugin.py b/yardstick/cmd/commands/plugin.py index c3e951e8c..b90ac15e6 100644 --- a/yardstick/cmd/commands/plugin.py +++ b/yardstick/cmd/commands/plugin.py @@ -17,22 +17,22 @@ from yardstick.common.utils import cliargs from yardstick.cmd.commands import change_osloobj_to_paras -class PluginCommands(object): - '''Plugin commands. +class PluginCommands(object): # pragma: no cover + """Plugin commands. Set of commands to manage plugins. - ''' + """ @cliargs("input_file", type=str, help="path to plugin configuration file", nargs=1) def do_install(self, args): - '''Install a plugin.''' + """Install a plugin.""" param = change_osloobj_to_paras(args) Plugin().install(param) @cliargs("input_file", type=str, help="path to plugin configuration file", nargs=1) def do_remove(self, args): - '''Remove a plugin.''' + """Remove a plugin.""" param = change_osloobj_to_paras(args) Plugin().remove(param)