Returns the absolute path to the project root
()
| 61 | return [f for f in out.decode("utf-8").split('\n') if f != ''] |
| 62 | |
| 63 | def call_git_toplevel(): |
| 64 | "Returns the absolute path to the project root" |
| 65 | return subprocess.check_output(GIT_TOPLEVEL_CMD).strip().decode("utf-8") |
| 66 | |
| 67 | def get_filenames_to_examine(base_directory): |
| 68 | "Returns an array of absolute paths to any project files in the base_directory that pass the include/exclude filters" |
no test coverage detected