From 234c5c19456d6cbb5313ba42a3d575476d259253 Mon Sep 17 00:00:00 2001 From: "jose.lausuch" Date: Tue, 12 Jul 2016 13:28:24 +0200 Subject: BugFix --noclean option in the CLI JIRA: FUNCTEST-340 The flag was placed after the flag -t and it should be before Change-Id: I069556b00c31039f1f4cb89c42e17887c45dcb50 Signed-off-by: jose.lausuch --- cli/commands/cli_tier.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/commands/cli_tier.py') diff --git a/cli/commands/cli_tier.py b/cli/commands/cli_tier.py index 4b714c28b..8e031cce9 100644 --- a/cli/commands/cli_tier.py +++ b/cli/commands/cli_tier.py @@ -70,7 +70,7 @@ class CliTier: else: if noclean: cmd = ("python /home/opnfv/repos/functest/ci/run_tests.py " - "-t --no-clean %s" % tiername) + "-n -t %s" % tiername) else: cmd = ("python /home/opnfv/repos/functest/ci/run_tests.py " "-t %s" % tiername) -- cgit 1.2.3-korg