(length=8)
| 1185 | return entry_points |
| 1186 | |
| 1187 | |
| 1188 | def get_git_commit_hash(length=8): |
| 1189 | try: |
| 1190 | cmd = ['git', 'rev-parse', f'--short={length}', 'HEAD'] |
| 1191 | return "+git{}".format(subprocess.check_output(cmd).strip().decode('utf-8')) |
| 1192 | except Exception: |
| 1193 | return "" |
| 1194 | |
| 1195 |
no outgoing calls
no test coverage detected