(name, *subdirs)
| 31 | |
| 32 | @contextlib.contextmanager |
| 33 | def imports_under_tool(name, *subdirs): |
| 34 | tooldir = os.path.join(toolsdir, name, *subdirs) |
| 35 | with import_helper.DirsOnSysPath(tooldir) as cm: |
| 36 | yield cm |
| 37 | |
| 38 | def import_tool(toolname): |
| 39 | with import_helper.DirsOnSysPath(scriptsdir): |
no test coverage detected
searching dependent graphs…