aboutsummaryrefslogtreecommitdiffstats
path: root/qtip/cli/commands/cmd_report.py
diff options
context:
space:
mode:
Diffstat (limited to 'qtip/cli/commands/cmd_report.py')
-rw-r--r--qtip/cli/commands/cmd_report.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/qtip/cli/commands/cmd_report.py b/qtip/cli/commands/cmd_report.py
index cb9c70b6..c9f31f4a 100644
--- a/qtip/cli/commands/cmd_report.py
+++ b/qtip/cli/commands/cmd_report.py
@@ -24,8 +24,9 @@ def cli(ctx):
@cli.command('show')
@click.argument('metric')
+@click.option('-p', '--path', help='Path to result directory')
@pass_context
-def show(ctx, metric):
+def show(ctx, metric, path):
reporter = ConsoleReporter({})
- report = reporter.render(metric)
+ report = reporter.render(metric, path)
click.echo(report)