(self, view, title, contents, plaintext)
| 743 | pass |
| 744 | |
| 745 | def show_markdown_report(self, view, title, contents, plaintext): |
| 746 | self.show_html_report(view, title, markdown_to_html(contents), plaintext) |
| 747 | |
| 748 | def show_html_report(self, view, title, contents, plaintext): |
| 749 | if len(plaintext) != 0: |
no test coverage detected