aboutsummaryrefslogtreecommitdiffstats
path: root/functest/cli
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-01-24 13:49:55 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2018-01-24 13:49:55 +0100
commitc653ed78d7721b9933e08015e45dd39379aa4316 (patch)
treeaf2befb6526725cbf4ed82ebc7fc87b27faa558c /functest/cli
parent4577924d883f56c4fe13a60d1d8533b798375aad (diff)
Delete functest_vacation.py
Change-Id: Id0e2769a1989e6778ae41f67ed634e2e5002a83d Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest/cli')
-rw-r--r--functest/cli/commands/cli_testcase.py12
1 files changed, 4 insertions, 8 deletions
diff --git a/functest/cli/commands/cli_testcase.py b/functest/cli/commands/cli_testcase.py
index ee7afa5a8..a424a05b2 100644
--- a/functest/cli/commands/cli_testcase.py
+++ b/functest/cli/commands/cli_testcase.py
@@ -16,7 +16,6 @@ import click
import functest.ci.tier_builder as tb
from functest.utils.constants import CONST
import functest.utils.functest_utils as ft_utils
-import functest.utils.functest_vacation as vacation
class Testcase(object):
@@ -47,13 +46,10 @@ class Testcase(object):
if report:
flags += "-r "
- if testname == 'vacation':
- vacation.main()
- else:
- tests = testname.split(",")
- for test in tests:
- cmd = "run_tests {}-t {}".format(flags, test)
- ft_utils.execute_command(cmd)
+ tests = testname.split(",")
+ for test in tests:
+ cmd = "run_tests {}-t {}".format(flags, test)
+ ft_utils.execute_command(cmd)
class CliTestcase(Testcase):