diff options
author | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-09-01 10:19:58 +0800 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-09-02 08:10:45 +0000 |
commit | b582e4a5be0bcc3521cc239a31f681a11f4504db (patch) | |
tree | b36928805f35e2d2d55c3e3057db6ebf10a89001 /testcases/OpenStack/examples | |
parent | f62e61cb31e3a39026c4f0bbdb6d6b4a1aebc2f3 (diff) |
stop hardcoded FUNCTEST_REPO path everywhere
functest repo is used by almost every testcase, each place we get it like:
REPOS_DIR = os.getenv('repos_dir')
FUNCTEST_REPO = ("%s/functest" % REPOS_DIR)
provide a common interface in functest_util.py
JIRA: FUNCTEST-453
Change-Id: Ie0635dacc761ed2d05b7e606530368844f32ebaf
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
(cherry picked from commit 470f573a3ac2eb1783efec6da01a3bee33360c65)
Diffstat (limited to 'testcases/OpenStack/examples')
-rwxr-xr-x | testcases/OpenStack/examples/create_instance_and_ip.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/testcases/OpenStack/examples/create_instance_and_ip.py b/testcases/OpenStack/examples/create_instance_and_ip.py index 92a3df6b5..3d41e5dde 100755 --- a/testcases/OpenStack/examples/create_instance_and_ip.py +++ b/testcases/OpenStack/examples/create_instance_and_ip.py @@ -28,7 +28,6 @@ args = parser.parse_args() """ logging configuration """ logger = ft_logger.Logger("create_instance_and_ip").getLogger() -REPO_PATH = os.environ['repos_dir'] + '/functest/' HOME = os.environ['HOME'] + "/" VM_BOOT_TIMEOUT = 180 |