aboutsummaryrefslogtreecommitdiffstats
path: root/functest/utils/env.py
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2017-05-19 22:23:52 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2017-05-19 23:04:49 +0200
commitd5e8713a186d07fe33c904bbf0bb3a43cb518700 (patch)
tree754b48914fe96bd41cbc8b6578bbec9458ff8158 /functest/utils/env.py
parent3c8f13cc1c832ec08fde0a3b502fe688f4597259 (diff)
Set default value for CONFIG_FUNCTEST_YAML
It calculates via the full path of env.py. Change-Id: Ief958833f5116cdb116d0153d85a0ae03063ec5c Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest/utils/env.py')
-rw-r--r--functest/utils/env.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/functest/utils/env.py b/functest/utils/env.py
index c9629e153..3724ec998 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'))
}