test: add parallel and map early-stop cases#569
Merged
Conversation
Adds the 13 early-stop / completion-config conformance cases: parallel 8-6, 8-7, 8-8, 8-10, 8-13, 8-17, 8-18, 8-19 and map 9-5, 9-6, 9-7, 9-9, 9-10. Both suites now cover their full requirement sets (8-1..8-22, 9-1..9-20). These cases exercise the SDKs' real completion-config APIs (fail-fast, throw-if-error, min-successful, tolerated failure count/percentage, concurrency validation) and are KNOWN to fail on the current Python SDK -- the red conformance jobs are the intended divergence signal, to be resolved by SDK fixes rather than test changes.
This was referenced Jul 22, 2026
yaythomas
approved these changes
Jul 22, 2026
wangyb-A
marked this pull request as ready for review
July 22, 2026 23:43
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 13 early-stop / completion-config conformance cases that were intentionally omitted from #566:
8-6fail-fast,8-7throw-if-error,8-8min-successful,8-10tolerated-count exceeded,8-13tolerated-percentage,8-17min-not-reached,8-18combined config,8-19bad concurrency validation9-5fail-fast,9-6throw-if-error,9-7min-successful,9-9tolerated-count exceeded,9-10tolerated-percentageThe test should pass after #533 is merged