summaryrefslogtreecommitdiffstats
path: root/qtip/cli/commands/cmd_plan.py
diff options
context:
space:
mode:
authorTaseer <taseer94@gmail.com>2017-03-13 21:13:45 +0500
committerYujun Zhang <zhang.yujunz@zte.com.cn>2017-03-16 15:57:14 +0000
commit638398e593ab95b8e280a3dafd9e1258dd5560e0 (patch)
tree5510f9078ebd2fb882ec6a517a705ca734dee9e0 /qtip/cli/commands/cmd_plan.py
parentaf798ce161d0a074823344fafb4984cc6f35ceec (diff)
Implement 'show' command.
- Render the description via templates JIRA: QTIP-205 Change-Id: I10523f85f80350e901a4a701bb65ca4833f8ff7c Signed-off-by: Taseer Ahmed <taseer94@gmail.com> (cherry picked from commit bb5af4b9be1325b61c7f80e71c7d50892ae22956)
Diffstat (limited to 'qtip/cli/commands/cmd_plan.py')
-rw-r--r--qtip/cli/commands/cmd_plan.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/qtip/cli/commands/cmd_plan.py b/qtip/cli/commands/cmd_plan.py
index 2f07965d..90773491 100644
--- a/qtip/cli/commands/cmd_plan.py
+++ b/qtip/cli/commands/cmd_plan.py
@@ -43,7 +43,10 @@ def list(ctx):
@click.argument('name')
@pass_context
def show(ctx, name):
- pass
+ plan = Plan('{}.yaml'.format(name))
+ cnt = plan.content
+ output = utils.render('plan', cnt)
+ click.echo(output)
@cli.command('run', help='Execute a Plan')