Assemble a path relative to the project root directory
(path)
| 2 | |
| 3 | |
| 4 | def assemble_project_path(path): |
| 5 | """Assemble a path relative to the project root directory""" |
| 6 | if not os.path.isabs(path): |
| 7 | path = os.path.join(get_project_root(), path) |
| 8 | return path |
| 9 | |
| 10 | def gen_relative_project_path(path): |
| 11 |
no test coverage detected