Allowing None values in the config parser

Closes-Bug: #1863945
Change-Id: Iac06fd64b4365aa29c0b06df6142a8c0851f6d22
This commit is contained in:
dlutton 2020-03-04 15:11:45 -08:00 committed by Andrey Kurilin
parent 0ff4590b97
commit 3e487073df

View File

@ -45,7 +45,7 @@ class TempestContext(context.VerifierContext):
self.clients = creds["admin"].clients()
self.available_services = self.clients.services().values()
self.conf = configparser.ConfigParser()
self.conf = configparser.ConfigParser(allow_no_value=True)
self.conf_path = self.verifier.manager.configfile
self.data_dir = self.verifier.manager.home_dir