(s, *args, **kwargs)
| 286 | result = [header, "\n\n"] |
| 287 | |
| 288 | def report(s, *args, **kwargs): |
| 289 | result.append(s.format(*args, **kwargs)) |
| 290 | |
| 291 | def report_paths(get_paths, label=None): |
| 292 | prefix = f" {label or get_paths}: " |
no test coverage detected
searching dependent graphs…