diff options
Diffstat (limited to 'cli/commands/perftest.py')
-rw-r--r-- | cli/commands/perftest.py | 4 |
1 files changed, 3 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"]) |