X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=functest%2Futils%2Fenv.py;h=2fb766d3275954ce4cff7dc4b597fc4fc5b62d44;hb=3900d3c3efa75e0a382183154c534e67b199152c;hp=c9629e153719f46f2aea250e3ccdddb310ef43e6;hpb=ec4514f240836129d5f3c25b4708d73a65b9cb60;p=functest.git diff --git a/functest/utils/env.py b/functest/utils/env.py index c9629e153..2fb766d32 100644 --- a/functest/utils/env.py +++ b/functest/utils/env.py @@ -1,5 +1,6 @@ #!/usr/bin/env python +import pkg_resources import os import re @@ -15,7 +16,10 @@ default_envs = { 'INSTALLER_IP': None, 'BUILD_TAG': None, 'OS_ENDPOINT_TYPE': None, - 'OS_AUTH_URL': None + 'OS_AUTH_URL': None, + 'CONFIG_FUNCTEST_YAML': pkg_resources.resource_filename( + 'functest', 'ci/config_functest.yaml'), + 'OS_INSECURE': '' }