summaryrefslogtreecommitdiffstats
path: root/qtip/cli/commands/cmd_metric.py
diff options
context:
space:
mode:
authorTaseer Ahmed <taseer94@gmail.com>2017-01-09 20:41:23 +0500
committerTaseer Ahmed <taseer94@gmail.com>2017-01-17 19:02:31 +0500
commit81aaf88e151694a08ff3d4cf4a7fe50df7232731 (patch)
tree54cba3438763c78a4dd32de242b1b3e4c132d03d /qtip/cli/commands/cmd_metric.py
parent2a3a0aec933566bc676ad259ca51e6eaa1f8ab76 (diff)
Metric module outline
Change-Id: Id95b07f1c0821ae0883c761fdf8f507afba4e5c0 Signed-off-by: Taseer Ahmed <taseer94@gmail.com>
Diffstat (limited to 'qtip/cli/commands/cmd_metric.py')
-rw-r--r--qtip/cli/commands/cmd_metric.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/qtip/cli/commands/cmd_metric.py b/qtip/cli/commands/cmd_metric.py
new file mode 100644
index 00000000..7f5c18d3
--- /dev/null
+++ b/qtip/cli/commands/cmd_metric.py
@@ -0,0 +1,33 @@
+##############################################################################
+# Copyright (c) 2016 ZTE Corp and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+
+import click
+
+from qtip.cli.entry import Context
+
+pass_context = click.make_pass_decorator(Context, ensure=False)
+
+
+@click.group()
+@pass_context
+def cli(ctx):
+ ''' Performance Metrics Group '''
+ pass
+
+
+@cli.command('list', help='List all the Metric Groups')
+@pass_context
+def cmd_list(ctx):
+ pass
+
+
+@cli.command('run', help='Run tests to collect Performance Metrics')
+@pass_context
+def cmd_run(ctx):
+ pass