Add Krea2 tuning coverage report

This commit is contained in:
2026-06-29 03:46:42 +02:00
parent fae5423513
commit 333f4752f6
4 changed files with 148 additions and 2 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/usr/bin/env python3
from __future__ import annotations
import sys
from pathlib import Path
ROOT = Path(__file__).resolve().parents[1]
if str(ROOT) in sys.path:
sys.path.remove(str(ROOT))
sys.path.insert(0, str(ROOT))
import krea2_tuning_report # noqa: E402
def main() -> int:
print(krea2_tuning_report.markdown_report())
return 0
if __name__ == "__main__":
raise SystemExit(main())