aboutsummaryrefslogtreecommitdiffstats
path: root/qtip/cli/commands/cmd_suite.py
diff options
context:
space:
mode:
Diffstat (limited to 'qtip/cli/commands/cmd_suite.py')
-rw-r--r--qtip/cli/commands/cmd_suite.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/qtip/cli/commands/cmd_suite.py b/qtip/cli/commands/cmd_suite.py
index 757f11a1..f6c839ba 100644
--- a/qtip/cli/commands/cmd_suite.py
+++ b/qtip/cli/commands/cmd_suite.py
@@ -10,12 +10,13 @@
from prettytable import PrettyTable
import os
import click
+from qtip.cli import helper
class Suite:
def __init__(self):
- self.path = os.path.join(os.path.dirname(__file__), '..', '..', 'benchmarks/suite')
+ self.path = os.path.join(helper.fetch_root(), 'suite')
def list(self):
table = PrettyTable(["Name"])