test: add wait-strategy cases (6-5, 6-6)#572
Merged
Merged
Conversation
wangyb-A
force-pushed
the
feature/python-conformance-wfc-wait-strategy
branch
2 times, most recently
from
July 22, 2026 23:55
c5260f5 to
0f257df
Compare
Adds the 6-5 fixed-delay and 6-6 max-attempts-exceeded wait_for_condition cases, completing the suite (6-1..6-13). Both use the SDK's built-in create_wait_strategy and are KNOWN to fail on the current Python SDK: the first continue checkpoint is recorded as StepFailed instead of StepSucceeded, failing the execution immediately (one shared root cause). The red conformance (wait_for_condition) job is the intended divergence signal, to be resolved by an SDK fix.
yaythomas
force-pushed
the
feature/python-conformance-wfc-wait-strategy
branch
from
July 23, 2026 04:19
0f257df to
f7ba6ef
Compare
yaythomas
approved these changes
Jul 23, 2026
yaythomas
marked this pull request as ready for review
July 23, 2026 04:19
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.
Summary
Adds the two
wait_for_conditioncases that exercise the SDK's built-in wait strategy (create_wait_strategy), completing the suite's requirement coverage (6-1..6-13):6-5WaitForConditionFixedDelay — fixed-delay strategy (2s, no jitter/backoff); each continue decision should checkpoint an intermediateStepSucceededwithNextAttemptDelaySeconds: 2, suspend, and re-poll until the threshold is met (execution SUCCEEDED, result 3)6-6WaitForConditionMaxAttempts — strategy capped at 3 attempts with a never-satisfied condition; after two continue checkpoints the third poll should raise max-attempts-exceeded and checkpoint a terminalStepFailed(execution FAILED)Expected to fail until #530 is done