(errtext)
| 178 | |
| 179 | |
| 180 | def is_missing_dep(errtext): |
| 181 | if 'No such file or directory' in errtext: |
| 182 | missing = errtext.split(': No such file or directory')[0].split()[-1] |
| 183 | return missing |
| 184 | return False |
no test coverage detected
searching dependent graphs…