()
| 61 | |
| 62 | |
| 63 | def check_git() -> dict: |
| 64 | git_pth = shutil.which("git") |
| 65 | if git_pth: |
| 66 | return { |
| 67 | "enabled": True, |
| 68 | "description": "git client is present" |
| 69 | } |
| 70 | else: |
| 71 | return { |
| 72 | "enabled": False, |
| 73 | "description": "`git` client is not present, this is required for the `aura diff` functionality" |
| 74 | } |
| 75 | |
| 76 | |
| 77 | def check_github_api() -> dict: |
no outgoing calls
no test coverage detected