From f8b52ec5839c804be2f866393462f85f530160d9 Mon Sep 17 00:00:00 2001 From: JingLu5 Date: Tue, 28 Jun 2016 14:26:08 +0800 Subject: Add plugin Command Change-Id: I8976ddf3dd43813ee38051dc4b0030265b85c3ef Signed-off-by: JingLu5 --- yardstick/cmd/cli.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'yardstick/cmd/cli.py') diff --git a/yardstick/cmd/cli.py b/yardstick/cmd/cli.py index a7ba04f57..dd74836cb 100644 --- a/yardstick/cmd/cli.py +++ b/yardstick/cmd/cli.py @@ -23,6 +23,7 @@ from yardstick.cmd.commands import task from yardstick.cmd.commands import runner from yardstick.cmd.commands import scenario from yardstick.cmd.commands import testcase +from yardstick.cmd.commands import plugin CONF = cfg.CONF cli_opts = [ @@ -60,7 +61,8 @@ class YardstickCLI(): 'task': task.TaskCommands, 'runner': runner.RunnerCommands, 'scenario': scenario.ScenarioCommands, - 'testcase': testcase.TestcaseCommands + 'testcase': testcase.TestcaseCommands, + 'plugin': plugin.PluginCommands } def __init__(self): -- cgit 1.2.3-korg