Add support for restarting a service
[yardstick.git] / yardstick / cmd / commands / plugin.py
index c3e951e..b90ac15 100644 (file)
@@ -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)