接口开始5%

This commit is contained in:
rain
2026-07-22 17:31:33 +08:00
parent eced3d1e6e
commit 9b0ad62df4
426 changed files with 20111 additions and 28472 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
"""Verify generated assets declared in a manifest v2 file."""
"""校验 schema v3 生成型资产,并写出不含机器绝对路径的确定性报告。"""
import argparse
import json
@@ -23,13 +23,13 @@ def main() -> None:
if not output.is_file():
report = {
"id": asset["id"],
"path": str(output),
"path": Path(asset["output"]).as_posix(),
"errors": ["output file is missing"],
"warnings": [],
"metrics": {},
}
else:
report = analyze_asset(output, asset)
report = analyze_asset(output, asset, args.workspace)
reports.append(report)
if report["errors"]:
failed = True