(root='.')
| 46 | ) |
| 47 | |
| 48 | def find_rejects(root='.'): |
| 49 | for dirname, dirs, files in os.walk(root): |
| 50 | for fname in files: |
| 51 | if fname.endswith('.rej'): |
| 52 | yield os.path.join(dirname, fname) |
| 53 | |
| 54 | def get_current_branch(): |
| 55 | branches = check_output(['git', 'branch']) |
nothing calls this directly
no outgoing calls
no test coverage detected