()
| 1193 | return "" |
| 1194 | |
| 1195 | |
| 1196 | def get_git_branch(): |
| 1197 | try: |
| 1198 | cmd = ['git', 'rev-parse', '--abbrev-ref', 'HEAD'] |
| 1199 | return subprocess.check_output(cmd).strip().decode('utf-8') |
| 1200 | except Exception: |
| 1201 | return "" |
| 1202 | |
| 1203 |
no outgoing calls
no test coverage detected