(self)
| 195 | return contexts, current_context |
| 196 | |
| 197 | def load_config(self): |
| 198 | config_dict = read_yaml_file(self._config_file) |
| 199 | contexts, current_context = self._parse_config(config_dict) |
| 200 | return GSConfig(contexts, current_context) |
| 201 | |
| 202 | |
| 203 | def load_gs_config(): |
no test coverage detected