REPOSITORY
kitech/mil-hil-validation Private
[참조 MVP] MIL/HIL 검증 하네스 — 구성요소별 시험 시나리오의 허용오차를 판정하고 감사 가능한 요약을 만듭니다.
https://git.agrithing.ai/kitech/mil-hil-validation.git bf96a7a feat: adopt python VALIDATION SDV reference implementation
4b5c644 feat: adopt python VALIDATION SDV reference implementation
45501b9 ci: add language-specific static and dynamic analysis
270ca16 docs: define component scope and interface contract
d4135e2 docs: register validation manifest
08fe1c0 ci: verify contract tests and evidence package
7d64428 feat: add executable reference MVP
0b3cca6 docs: define component scope and interface contract
12 items · main
.asw directory → .gitea directory → asw_component directory → contracts directory → examples directory → release directory → tests directory → tools directory → NOTICE.md 182 B → pyproject.toml 245 B → README.md 2.2 KB → run.py 352 B →
·/ run.py
python · 352 B · 6ce1446 Download
from __future__ import annotationsimport jsonimport sysfrom asw_component import executeif __name__ == "__main__": path = sys.argv[1] if len(sys.argv) > 1 else None with open(path, encoding="utf-8") if path else sys.stdin as source: payload = json.load(source) print(json.dumps(execute(payload), ensure_ascii=False, indent=2))