diff options
author | Juha Kosonen <juha.kosonen@nokia.com> | 2017-08-18 12:18:47 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-08-18 12:18:47 +0000 |
commit | 9622f5603e90166a92e87aa464f14d5db80a902a (patch) | |
tree | d7555106e98afcec97a7e0415609c1f6c75952e5 | |
parent | 2890159f9da2dd13f5db6f85ca039922205df836 (diff) | |
parent | 3f207c0385df09e5269c5d17046c32a0cda46c41 (diff) |
Merge "Put domain name in CONST"
-rw-r--r-- | functest/ci/run_tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/functest/ci/run_tests.py b/functest/ci/run_tests.py index e26f4305..38abe40c 100644 --- a/functest/ci/run_tests.py +++ b/functest/ci/run_tests.py @@ -92,6 +92,8 @@ class Runner(object): CONST.__setattr__('OS_TENANT_NAME', value) elif key == 'OS_PASSWORD': CONST.__setattr__('OS_PASSWORD', value) + elif key == "OS_PROJECT_DOMAIN_NAME": + CONST.__setattr__('OS_PROJECT_DOMAIN_NAME', value) @staticmethod def get_run_dict(testname): |