aboutsummaryrefslogtreecommitdiffstats
path: root/cli
diff options
context:
space:
mode:
authorjose.lausuch <jose.lausuch@ericsson.com>2016-07-22 23:40:28 +0200
committerjose.lausuch <jose.lausuch@ericsson.com>2016-07-22 23:40:28 +0200
commit0f6c6171d514f6f7c3cb376bd40f20468a37bc41 (patch)
tree156bcf24ed335f966f717d213d4c61ef4d98dbb4 /cli
parent17cce367746a8a750369be25cef50632ede91216 (diff)
Add duration message after test execution
Change-Id: Ida68009ba02b2a5135dc4f3ae958fc77088389d7 Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'cli')
-rw-r--r--cli/cli_base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/cli_base.py b/cli/cli_base.py
index 45be1d001..827f8a4b6 100644
--- a/cli/cli_base.py
+++ b/cli/cli_base.py
@@ -117,7 +117,7 @@ def testcase_show(testname):
@testcase.command('run', help="Executes a test case.")
@click.argument('testname', type=click.STRING, required=True)
-@click.option('-n', '--noclean', is_flag=True, default=False,
+@click.option('-n', '--noclean', is_flag=True, default=False,
help='The created openstack resources by the test'
'will not be cleaned after the execution.')
def testcase_run(testname, noclean):
@@ -143,7 +143,7 @@ def tier_gettests(tiername):
@tier.command('run', help="Executes all the tests within a tier.")
@click.argument('tiername', type=click.STRING, required=True)
-@click.option('-n', '--noclean', is_flag=True, default=False,
+@click.option('-n', '--noclean', is_flag=True, default=False,
help='The created openstack resources by the tests'
'will not be cleaned after the execution.')
def tier_run(tiername, noclean):