diff options
author | Linda Wang <wangwulin@huawei.com> | 2017-06-29 10:06:19 +0000 |
---|---|---|
committer | Cedric Ollivier <cedric.ollivier@orange.com> | 2017-07-05 14:30:04 +0000 |
commit | 11ef4c749460411d25777bdd3e447fc03af65208 (patch) | |
tree | 2051473f012149c32ecb450fb32901ccd820922b /functest/utils | |
parent | b4cacd1ca87b7cbe7c166a543e8f448b723c837d (diff) |
Enable refstack work on https without SSL checks
When refstack is run in https environment, SSL checks
will be skipped if no cacert file is provided.
JIRA: FUNCTEST-828
Change-Id: Ib44582b4f2f508c7a255a1510dbdc33110fe0f14
Signed-off-by: Linda Wang <wangwulin@huawei.com>
Diffstat (limited to 'functest/utils')
-rw-r--r-- | functest/utils/env.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/functest/utils/env.py b/functest/utils/env.py index 0174588d..2fb766d3 100644 --- a/functest/utils/env.py +++ b/functest/utils/env.py @@ -18,7 +18,8 @@ default_envs = { 'OS_ENDPOINT_TYPE': None, 'OS_AUTH_URL': None, 'CONFIG_FUNCTEST_YAML': pkg_resources.resource_filename( - 'functest', 'ci/config_functest.yaml') + 'functest', 'ci/config_functest.yaml'), + 'OS_INSECURE': '' } |