(file_list)
| 116 | message += f'> {file[0]}' + '\n' |
| 117 | |
| 118 | def msg_format_paths(file_list): |
| 119 | message = '' |
| 120 | for patch_file in file_list: |
| 121 | message += '> ' + patch_file[len('../patches/') :] + '\n' |
| 122 | return message |
| 123 | |
| 124 | # Show which patches were applied if not all patches were allowed |
| 125 | if stop_at_patch and applied_patches: |
no outgoing calls
no test coverage detected