()
| 128 | |
| 129 | |
| 130 | def main(): |
| 131 | work = Path(tempfile.mkdtemp(prefix="ts-hermes-plugin-check-")) |
| 132 | try: |
| 133 | run_checks(work) |
| 134 | finally: |
| 135 | shutil.rmtree(work, ignore_errors=True) |
| 136 | print(f"1..{PASS}") |
| 137 | print(f"hermes plugin unit checks: all {PASS} passed") |
| 138 | |
| 139 | |
| 140 | def run_checks(work: Path): |
no test coverage detected