From 2f650cc150e966781e971cace1762b71fc320f75 Mon Sep 17 00:00:00 2001 From: linux_geek Date: Thu, 3 Nov 2016 20:35:58 +0500 Subject: Directory independant 'perftest list' command execution. JIRA: QTIP-141 Change-Id: I5a4fce5d8b13c9443bc1be13cb174a78a262e8b6 Signed-off-by: Taseer Ahmed --- cli/commands/perftest.py | 4 +++- cli/helper.py | 14 ++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 cli/helper.py 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/') -- cgit 1.2.3-korg