summaryrefslogtreecommitdiffstats
path: root/cli
diff options
context:
space:
mode:
authorlinux_geek <taseer94@gmail.com>2016-11-03 20:35:58 +0500
committerlinux_geek <taseer94@gmail.com>2016-11-06 07:43:30 +0500
commit2f650cc150e966781e971cace1762b71fc320f75 (patch)
tree06b13e2c9771575729e82b2bb8b7062ecf19aa66 /cli
parente831e0b5e918200e98e8abe8d10a46c7873e6128 (diff)
Directory independant 'perftest list' command execution.
JIRA: QTIP-141 Change-Id: I5a4fce5d8b13c9443bc1be13cb174a78a262e8b6 Signed-off-by: Taseer Ahmed <taseer94@gmail.com>
Diffstat (limited to 'cli')
-rw-r--r--cli/commands/perftest.py4
-rw-r--r--cli/helper.py14
2 files changed, 17 insertions, 1 deletions
diff --git a/cli/commands/perftest.py b/cli/commands/perftest.py
index c163070a..0eb6d062 100644
--- a/cli/commands/perftest.py
+++ b/cli/commands/perftest.py
@@ -10,12 +10,14 @@
from prettytable import PrettyTable
import yaml
import click
+import os
+from cli import helper
class PerfTest:
def __init__(self):
- self.path = 'benchmarks/perftest/summary'
+ self.path = os.path.join(helper.fetch_root(), 'perftest/summary')
def list(self):
table = PrettyTable(["Name", "Description"])
diff --git a/cli/helper.py b/cli/helper.py
new file mode 100644
index 00000000..a5865bce
--- /dev/null
+++ b/cli/helper.py
@@ -0,0 +1,14 @@
+##############################################################################
+# 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 os
+
+
+def fetch_root():
+ return os.path.join(os.path.dirname(__file__), os.pardir, 'benchmarks/')