feat(lab): publish M4.7 Worker graph evidence

This commit is contained in:
DCCONSTRUCTIONS
2026-08-23 22:00:46 +03:00
parent 64860be4ae
commit 34ed8a0f5f
20 changed files with 1363 additions and 16 deletions
+5 -1
View File
@@ -16,7 +16,10 @@ from k1link.perception.graph_contracts import (
from k1link.perception.providers import ReferencePerceptionGraphConfigV2
from k1link.perception.reference_graph_identity import ReferenceGraphRuntimeIdentity
from k1link.perception.reference_graph_parity import ReferenceGraphParityReport
from k1link.perception.reference_graph_result import seal_reference_graph_result
from k1link.perception.reference_graph_result import (
read_reference_graph_result,
seal_reference_graph_result,
)
REPOSITORY_ROOT = Path(__file__).resolve().parents[1]
@@ -174,6 +177,7 @@ def test_reference_graph_result_is_content_addressed_and_reproducible(tmp_path:
assert runtime == _runtime().to_dict()
assert first.manifest["runtime"] == runtime
assert first.manifest["files"]["runtime.json"]["sha256"]
assert read_reference_graph_result(first.result_root) == first
def test_reference_graph_result_fails_closed_on_supersession(tmp_path: Path) -> None: