aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/cmd
diff options
context:
space:
mode:
authorRoss Brattain <ross.b.brattain@intel.com>2018-03-02 19:29:11 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-03-02 19:29:11 +0000
commit8b2b6806d73e3b4e377cb8afe5ff98152567438f (patch)
tree503345a0926474979890695bb97a01d97cffe651 /yardstick/cmd
parent2f7f05ff0a46dd8c975fb0680ce812cf444e8ee5 (diff)
parent306c2408c3ea30dc53d5883cebc3550f8cb7ebbc (diff)
Merge "Prohibit the importation of a list of libraries"
Diffstat (limited to 'yardstick/cmd')
-rw-r--r--yardstick/cmd/cli.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/yardstick/cmd/cli.py b/yardstick/cmd/cli.py
index 67ce11451..0bc7c1617 100644
--- a/yardstick/cmd/cli.py
+++ b/yardstick/cmd/cli.py
@@ -28,6 +28,8 @@ from yardstick.cmd.commands import testcase
from yardstick.cmd.commands import plugin
from yardstick.cmd.commands import env
from yardstick.cmd.commands import report
+from yardstick.common import import_tools
+
CONF = cfg.CONF
cli_opts = [
@@ -53,7 +55,8 @@ def find_config_files(path_list):
return None
-class YardstickCLI(): # pragma: no cover
+@import_tools.decorator_banned_modules
+class YardstickCLI(object): # pragma: no cover
"""Command-line interface to yardstick"""
# Command categories
@@ -108,7 +111,7 @@ class YardstickCLI(): # pragma: no cover
# register subcommands to parse additional command line arguments
def parser(subparsers):
- self._add_command_parsers(YardstickCLI.categories, subparsers)
+ self._add_command_parsers(self.categories, subparsers)
category_opt = cfg.SubCommandOpt("category",
title="Command categories",