(file)
| 279 | import importlib |
| 280 | |
| 281 | def load_plugin(file): |
| 282 | mod_path = file.replace(".py", "") |
| 283 | return importlib.import_module(mod_path) |
| 284 | |
| 285 | def apply_plugin(file, plugin): |
| 286 | if hasattr(plugin, "get_cond_and_uncond"): |
no outgoing calls
no test coverage detected