diff options
author | valentin boucher <valentin.boucher@orange.com> | 2017-05-22 13:08:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-05-22 13:08:45 +0000 |
commit | efbe74c4cc1b6b6982e9e13950319f690541d6a3 (patch) | |
tree | 96cced0345a6a9498b6209210b5347465c481078 /functest/utils/env.py | |
parent | 6f70bd17b238e3c931f5d575e4b8eb625dbca91d (diff) | |
parent | d5e8713a186d07fe33c904bbf0bb3a43cb518700 (diff) |
Merge "Set default value for CONFIG_FUNCTEST_YAML"
Diffstat (limited to 'functest/utils/env.py')
-rw-r--r-- | functest/utils/env.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/functest/utils/env.py b/functest/utils/env.py index c9629e15..3724ec99 100644 --- a/functest/utils/env.py +++ b/functest/utils/env.py @@ -15,7 +15,9 @@ default_envs = { 'INSTALLER_IP': None, 'BUILD_TAG': None, 'OS_ENDPOINT_TYPE': None, - 'OS_AUTH_URL': None + 'OS_AUTH_URL': None, + 'CONFIG_FUNCTEST_YAML': os.path.normpath(os.path.join(os.path.dirname( + os.path.abspath(__file__)), '../ci/config_functest.yaml')) } |