A dictionary of dictionaries of sample metadata, using test name as keys,
dictionaries of sample metadata as value.
job_file = job_file.replace(JOB_STONEWALL_PARAMETER, "")
config = ConfigParser.ConfigParser()
config.readfp(io.BytesIO(job_file))
sections = config.__dict__["_sections"]
global_metadata = {}
After Change
config.readfp(io.BytesIO(job_file))
global_metadata = {}
if GLOBAL in config.sections():
global_metadata = dict(config.items(GLOBAL))
section_metadata = {}
for section in config.sections():
if section != GLOBAL:
metadata = {}