tps: fix read of config parameters from config file

parent 94774d70
......@@ -67,6 +67,9 @@ class Suite(object):
self.serial = config.get('global', 'serial')
self.test_path = config.get('global', 'test_path')
self.log_path = config.get('global', 'log_path')
self.sequence = config.get('global', 'sequence')
self.repeat = config.get('global', 'repeat')
self.randomize = config.get('global', 'randomize')
def save(self):
config = ConfigParser()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment