X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=cli%2Fbottlenecks_cli.py;h=01144cf2064821994781a010784013952238d793;hb=refs%2Fheads%2Fstable%2Feuphrates;hp=0328578f3ce66770d828c983635a61db9ac37ac7;hpb=afea25c89a2d1ae1b1c7ca6641652c0adc0dba02;p=bottlenecks.git diff --git a/cli/bottlenecks_cli.py b/cli/bottlenecks_cli.py index 0328578f..01144cf2 100644 --- a/cli/bottlenecks_cli.py +++ b/cli/bottlenecks_cli.py @@ -26,18 +26,37 @@ def main(ctx): """ pass + _testcase = Testcase() + @main.group() @click.pass_context def testcase(ctx): """testcase cli group for bottlenecks project""" pass + @testcase.command('run', help="To execute a test case.") @click.argument('testname', type=click.STRING, required=True) @click.option('-n', '--noclean', is_flag=True, default=False, help='Openstack resources created by the test' 'will not be cleaned after the testcase execution.') def testcase_run(testname, noclean): - _testcase.run(testname, noclean) + _testcase.run('-c ' + testname, noclean) + + +@main.group() +@click.pass_context +def teststory(ctx): + """teststory cli group for bottlenecks project""" + pass + + +@teststory.command('run', help="To execute a test story.") +@click.argument('testname', type=click.STRING, required=True) +@click.option('-n', '--noclean', is_flag=True, default=False, + help='Openstack resources created by the test' + 'will not be cleaned after the teststory execution.') +def teststory_run(testname, noclean): + _testcase.run('-s ' + testname, noclean)