(self)
| 534 | return results |
| 535 | |
| 536 | def to_string(self) -> str: |
| 537 | import pystache |
| 538 | |
| 539 | with open(os.path.join(cwd, "templates", "report.html"), "r") as file: |
| 540 | return pystache.render(file.read(), self.results) |
| 541 | |
| 542 | def to_file(self, filepath: str) -> None: |
| 543 | import pystache |
no test coverage detected