Update the workspace constant with its latest path
(latest_path)
| 92 | |
| 93 | |
| 94 | def update_workspace(latest_path): |
| 95 | """Update the workspace constant with its latest path""" |
| 96 | |
| 97 | latest_path = slashen(latest_path, "native") |
| 98 | validate_path(latest_path) |
| 99 | WORKSPACE.update(path=latest_path) |
| 100 | |
| 101 | |
| 102 | def move_workspace(old_path, new_path): |
no test coverage detected