(path, globs, locs=None)
| 34 | repo_root = Path(__file__).resolve().parent |
| 35 | |
| 36 | def execfile(path, globs, locs=None): |
| 37 | locs = locs or globs |
| 38 | with path.open(encoding="utf-8") as f: |
| 39 | exec(compile(f.read(), str(path), "exec"), globs, locs) |
| 40 | |
| 41 | #--------------------------------------------------------------------------- |
| 42 | # Basic project information |
no test coverage detected
searching dependent graphs…