commit | d24e12fd10c42016c30bfec14287ce76d09ce7be | [log] [tgz] |
---|---|---|
author | sgarbuz <sgarbuz@mirantis.com> | Tue Feb 27 18:34:00 2018 +0200 |
committer | sgarbuz <sgarbuz@mirantis.com> | Tue Feb 27 18:37:11 2018 +0200 |
tree | adcd72b13e0c495d0baaa70bcfe2e0b2a2d0e808 | |
parent | 551df9fe0a427e0624cadac483c855d88cc6c80c [diff] |
Fix for runtest.tempest_generated_config added default values for auth section: - admin_domain_name = Default - use_dynamic_credentials = True Change-Id: I51589539f4088391ce25314713e57fc164b89d7e Related-Prod: https://mirantis.jira.com/browse/PROD-18039
diff --git a/_modules/runtest/tempest_sections/auth.py b/_modules/runtest/tempest_sections/auth.py index 83a5748..a052100 100644 --- a/_modules/runtest/tempest_sections/auth.py +++ b/_modules/runtest/tempest_sections/auth.py
@@ -20,7 +20,7 @@ @property def admin_domain_name(self): - pass + return 'Default' @property def admin_password(self): @@ -58,5 +58,5 @@ @property def use_dynamic_credentials(self): - pass + return True