From c653ed78d7721b9933e08015e45dd39379aa4316 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Wed, 24 Jan 2018 13:49:55 +0100 Subject: Delete functest_vacation.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Id0e2769a1989e6778ae41f67ed634e2e5002a83d Signed-off-by: Cédric Ollivier --- functest/cli/commands/cli_testcase.py | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'functest/cli/commands') 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): -- cgit 1.2.3-korg