(*, config_ini, path)
| 10 | |
| 11 | |
| 12 | def load_run_config_ini(*, config_ini, path): |
| 13 | value = config_ini.read_value_by_path(path=path) |
| 14 | data = json.loads(value) |
| 15 | for param in data: |
| 16 | if 'hash' not in param: |
| 17 | param['hash'] = None |
| 18 | return data |
| 19 | |
| 20 | |
| 21 | def get_cmake_cmd(): |
nothing calls this directly
no test coverage detected