feat: PLA-1062 report skipped test coverage explicitly - #36
Merged
Merged
Conversation
Add optional native and hosted skip capabilities with lifecycle cleanup and failure precedence. Preserve skipped-aware counts and incomplete containers without counting unexecuted coverage as passed. Co-Authored-By: Codex <noreply@openai.com>
This was referenced Sep 15, 2026
jeffatgametime
added a commit
that referenced
this pull request
Sep 15, 2026
Admin merge explicitly authorized by Jeff. Exact-head CI, fresh race tests repeated three times, vet, and real Temporal lifecycle/concurrency proofs passed; serial default retained. Parent #36 is merged and this PR targets master. Co-Authored-By: Codex <noreply@openai.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The following code makes an impact.
Purpose of Change
Represent skipped prerequisite coverage explicitly without turning unexecuted assertions into passes or losing cleanup/failure evidence.
Ticket Link
PLA-1062
Change Overview
testy.Skipf/testy.Skippedcapabilities without expandingTestingT.Affected Functionality
Generic testy lifecycle, result aggregation, in-memory summaries and HTML rendering. This is the library foundation only; API-tests prerequisite policy and consumer reporting are a separate dependent change in progress. The library can merge independently; consumers must explicitly handle incomplete results before enabling skips. No case concurrency or Domain Model web-404 change is included.
Testing
go test -count=1 -race ./...andgo vet ./...passed with Go 1.25.1.dyld: missing LC_UUID; Linux CI remains authoritative for that runtime.Observability
Results retain
SkipReasoneven when a real failure takes precedence. Skipped tests remain in total coverage but never passed counts. Containers exposeincomplete, and skipped counts are available throughSumTestStatsWithSkippedandSummary.Skipped. Cleanup failures are not suppressed by the generic library.Rollout
Merge and consume an immutable library revision through the normal dependency update. No service deployment belongs to this library PR. API-tests adoption will separately update persisted results/UI/Slack/check policies and verify hosted behavior. PLA-1062 remains In Progress until that companion verification is complete. Roll back adoption by reverting the consumer dependency/policy change through its normal PR path.