diff options
author | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-08-31 10:37:15 +0800 |
---|---|---|
committer | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-08-31 10:37:15 +0800 |
commit | 834f81f0ad708b930f66aec1fd8b36e2cfb8b32b (patch) | |
tree | d8d8f70ca335237dc79ff01fa596e86265355893 /testcases/features | |
parent | e1cf8564b1f06a64863ee463b817935ec58f834c (diff) |
delete useless FUNCTEST_REPO variable
FUNCTEST_REPO appears in lots of feature testcases, but never be used, delete it clean the code
JIRA: FUNCTEST-448
Change-Id: I4a9a10eac29e09b481563ed2c33f4122dd9ee3de
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'testcases/features')
-rwxr-xr-x | testcases/features/copper.py | 1 | ||||
-rwxr-xr-x | testcases/features/doctor.py | 1 | ||||
-rwxr-xr-x | testcases/features/domino.py | 1 | ||||
-rwxr-xr-x | testcases/features/promise.py | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/testcases/features/copper.py b/testcases/features/copper.py index c312643eb..c79754a1b 100755 --- a/testcases/features/copper.py +++ b/testcases/features/copper.py @@ -32,7 +32,6 @@ with open(os.environ["CONFIG_FUNCTEST_YAML"]) as f: functest_yaml = yaml.safe_load(f) dirs = functest_yaml.get('general').get('directories') -FUNCTEST_REPO = dirs.get('dir_repo_functest') COPPER_REPO = dirs.get('dir_repo_copper') logger = ft_logger.Logger("copper").getLogger() diff --git a/testcases/features/doctor.py b/testcases/features/doctor.py index 154cfc695..02edd25ca 100755 --- a/testcases/features/doctor.py +++ b/testcases/features/doctor.py @@ -31,7 +31,6 @@ with open(os.environ["CONFIG_FUNCTEST_YAML"]) as f: functest_yaml = yaml.safe_load(f) dirs = functest_yaml.get('general').get('directories') -FUNCTEST_REPO = dirs.get('dir_repo_functest') DOCTOR_REPO = dirs.get('dir_repo_doctor') logger = ft_logger.Logger("doctor").getLogger() diff --git a/testcases/features/domino.py b/testcases/features/domino.py index 03ad4a2af..291a3b49b 100755 --- a/testcases/features/domino.py +++ b/testcases/features/domino.py @@ -33,7 +33,6 @@ with open(os.environ["CONFIG_FUNCTEST_YAML"]) as f: functest_yaml = yaml.safe_load(f) dirs = functest_yaml.get('general').get('directories') -FUNCTEST_REPO = dirs.get('dir_repo_functest') DOMINO_REPO = dirs.get('dir_repo_domino') logger = ft_logger.Logger("domino").getLogger() diff --git a/testcases/features/promise.py b/testcases/features/promise.py index f5db02617..3728adfe5 100755 --- a/testcases/features/promise.py +++ b/testcases/features/promise.py @@ -36,7 +36,6 @@ with open(os.environ["CONFIG_FUNCTEST_YAML"]) as f: functest_yaml = yaml.safe_load(f) dirs = functest_yaml.get('general').get('directories') -FUNCTEST_REPO = dirs.get('dir_repo_functest') PROMISE_REPO = dirs.get('dir_repo_promise') TEST_DB = functest_yaml.get('results').get('test_db_url') |