Check if Misc/NEWS.d has been changed.
(file_paths)
| 178 | |
| 179 | @status("Misc/NEWS.d updated with `blurb`", modal=True) |
| 180 | def reported_news(file_paths): |
| 181 | """Check if Misc/NEWS.d has been changed.""" |
| 182 | return any(p.startswith(os.path.join('Misc', 'NEWS.d', 'next')) |
| 183 | for p in file_paths) |
| 184 | |
| 185 | |
| 186 | @status("configure regenerated", modal=True, info=str) |
no test coverage detected
searching dependent graphs…