diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-01-24 13:49:55 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-01-24 13:49:55 +0100 |
commit | c653ed78d7721b9933e08015e45dd39379aa4316 (patch) | |
tree | af2befb6526725cbf4ed82ebc7fc87b27faa558c /functest/cli/commands/cli_testcase.py | |
parent | 4577924d883f56c4fe13a60d1d8533b798375aad (diff) |
Delete functest_vacation.py
Change-Id: Id0e2769a1989e6778ae41f67ed634e2e5002a83d
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest/cli/commands/cli_testcase.py')
-rw-r--r-- | functest/cli/commands/cli_testcase.py | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/functest/cli/commands/cli_testcase.py b/functest/cli/commands/cli_testcase.py index ee7afa5a..a424a05b 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): |