Add Krea2 tuning coverage report
This commit is contained in:
@@ -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())
|
||||
Reference in New Issue
Block a user