(key, default)
| 335 | print(" %s Loaded config file" % arrow, config_path) |
| 336 | |
| 337 | def get_if_exist(key, default): |
| 338 | return data[key] if key in data else default |
| 339 | return Bunch(testfiles=get_if_exist("testfiles", []), |
| 340 | breakfailed=get_if_exist("breakfailed", True), |
| 341 | remove_testfiles=get_if_exist("remove_testfiles", []), |
no outgoing calls
no test coverage detected
searching dependent graphs…