Merge "Open storperf testcase to huawei-pod2"
[yardstick.git] / yardstick / benchmark / core / runner.py
index 5f8132d..64acdaa 100644 (file)
@@ -15,14 +15,14 @@ from yardstick.benchmark.runners.base import Runner
 from yardstick.benchmark.core import print_hbar
 
 
-class Runners(object):
-    '''Runner commands.
+class Runners(object):  # pragma: no cover
+    """Runner commands.
 
        Set of commands to discover and display runner types.
-    '''
+    """
 
     def list_all(self, args):
-        '''List existing runner types'''
+        """List existing runner types"""
         types = Runner.get_types()
         print_hbar(78)
         print("| %-16s | %-60s" % ("Type", "Description"))
@@ -33,6 +33,6 @@ class Runners(object):
         print_hbar(78)
 
     def show(self, args):
-        '''Show details of a specific runner type'''
+        """Show details of a specific runner type"""
         rtype = Runner.get_cls(args.type[0])
         print(rtype.__doc__)