Conditions | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | import abc |
||
10 | def __init__(self, config): |
||
11 | self.verbose = config.getoption("benchmark_verbose") |
||
12 | self.logger = Logger(self.verbose, config) |
||
13 | self.config = config |
||
14 | self.machine_id = get_machine_id() |
||
15 | self.save = config.getoption("benchmark_save") |
||
16 | self.autosave = config.getoption("benchmark_autosave") |
||
17 | self.save_data = config.getoption("benchmark_save_data") |
||
18 | self.json = config.getoption("benchmark_json") |
||
19 | self.compare = config.getoption("benchmark_compare") |
||
20 | |||
30 |