diff --git a/docs/operations/adapter-remediation-ledger.md b/docs/operations/adapter-remediation-ledger.md index 9d2c588..a05778e 100644 --- a/docs/operations/adapter-remediation-ledger.md +++ b/docs/operations/adapter-remediation-ledger.md @@ -501,6 +501,23 @@ milliseconds, so the observation loses the race. It was already red before this work and is not a product defect; the assertions it makes about cgroup limits and credential exposure are not currently proven by an automated run. +Two more time out at their 10s budget when the whole suite runs in parallel on +a loaded machine and pass in isolation, repeatedly: *expires an uncommitted +lease only after cleaning every owned object* and *requires every external +expected identity variable at the exact promotion CLI*. They are recorded as +environment-limited, not as green. + +### FE-GATE-020 after this pass + +| fixture | before | after | +| --- | ---: | ---: | +| reference feature | failed before its first assertion | 1,612 pass / 1 fail | +| optional recipe | 39 failures | 1,386 pass / 2 fail | +| browser file + storage | 40 failures | 1,006 pass / 3 fail | +| realtime | not reached | 1,159 pass / 1 fail | + +Every remaining failure is one of the three environment-limited tests above. + Lab performance now produces evidence, and that evidence shows the named-interaction budget missed on this machine (367–724ms against 200ms). The metric measures a full lazy-route navigation while the budget is an diff --git a/tests/unit/supply-chain.test.ts b/tests/unit/supply-chain.test.ts index 5759895..7d28a85 100644 --- a/tests/unit/supply-chain.test.ts +++ b/tests/unit/supply-chain.test.ts @@ -14,6 +14,7 @@ import { validateLicensePolicy, } from "../../scripts/lib/supply-chain.ts"; import { digestReleaseInputFiles } from "../../scripts/lib/release-input-evidence.ts"; +import { isReducedCiContractRun } from "../../scripts/contracts/ci-gates.ts"; import { findSecretMatches } from "../../scripts/lib/secret-scan.ts"; import { parseSecretScanIncludedPaths, @@ -535,7 +536,11 @@ describe("supply-chain policy", () => { ]); }); - it("covers every mandatory release input in the secret scan policy", async () => { + // A removal fixture deletes some of these inputs on purpose — removing the + // browser file/storage capability takes the whole browser-capability harness + // with it — and prunes them from its own policy. This is a claim about the + // full repository, so it does not describe a deliberately reduced one. + it.skipIf(isReducedCiContractRun())("covers every mandatory release input in the secret scan policy", async () => { const policy = JSON.parse( await readFile("config/security/secret-scan-policy.json", "utf8"), ) as { trackedRoots: string[] };