ci: use latest conformance suite (git main) in conformance CI - #586
Merged
Conversation
added 2 commits
July 27, 2026 21:22
Installs the conformance runner from the git main branch (subdirectory packages/aws-durable-execution-conformance-tests) instead of the pinned ==0.1.0 PyPI release, so new upstream suites and requirements are exercised automatically.
Upstream requirements 1-17, 1-18, 3-11 and 3-17 now specify that the input is logged through the step or child context logger rather than printed to raw stdout, and the runner correlates CloudWatch records to an execution with a JSON filter on the executionArn field that the context logger attaches. Replaces print() with the context logger in those four handlers and sets the JSON log format on the step and child templates, since Lambda's default text format drops the extra fields the filter matches on. This also unblocks 1-7, which already used the step context logger but emitted unstructured records.
wangyb-A
force-pushed
the
ci-conformance-runner-git-main
branch
from
July 27, 2026 21:24
0d8b257 to
2d8f477
Compare
Requirements 3-11 and 3-17 specify replay logging so a child body re-execution stays observable, but the context logger suppresses records while the context is replaying. Rebinds the replay source with with_is_replaying so both handlers log unconditionally while keeping the executionArn the runner correlates on. 3-11 asserts two records: the ReplayChildren re-execution emits no history events, so the log is the only evidence it ran. 3-17 asserts one, and needs replay logging for that count to be meaningful -- with de-duplication an incorrect second execution is hidden. Verified locally: the child body runs twice with is_replaying False then True, yielding two records for 3-11 and one for 3-17.
wangyb-A
marked this pull request as ready for review
July 27, 2026 22:03
ayushiahjolia
approved these changes
Jul 27, 2026
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.
Switches the conformance-tests workflow to install the runner from git main (subdirectory packages/aws-durable-execution-conformance-tests) instead of the pinned ==0.1.0 PyPI release, so new upstream suites/requirements are exercised automatically. Draft until reviewed.