diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-09-07 14:49:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-09-07 14:49:50 +0000 |
commit | 227afb8285b8f178987a7d6eb1d28a74201a5d1b (patch) | |
tree | 2501ab95b10e2958f93f6db7eba5fba66c136dd2 /cli/commands/cli_testcase.py | |
parent | 800d0ed2c883a51122b7fa1aa4d9d86405ae5416 (diff) | |
parent | f3381f49cc72fded67c1febe78b27e18ec396878 (diff) |
Merge "remove imported FUNCTEST_REPO object"
Diffstat (limited to 'cli/commands/cli_testcase.py')
-rw-r--r-- | cli/commands/cli_testcase.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/commands/cli_testcase.py b/cli/commands/cli_testcase.py index 68f9ed610..5cfe99881 100644 --- a/cli/commands/cli_testcase.py +++ b/cli/commands/cli_testcase.py @@ -12,16 +12,17 @@ import os import click + import functest.ci.tier_builder as tb import functest.utils.functest_utils as ft_utils import functest.utils.functest_vacation as vacation -from functest.utils.functest_utils import FUNCTEST_REPO as FUNCTEST_REPO functest_yaml = ft_utils.get_functest_yaml() FUNCTEST_CONF_DIR = functest_yaml.get("general").get( "directories").get("dir_functest_conf") ENV_FILE = FUNCTEST_CONF_DIR + "/env_active" +FUNCTEST_REPO = ft_utils.FUNCTEST_REPO class CliTestcase: |