Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.3k
gh-137242: Allow Android testbed to take all Python command-line options#138805
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Uh oh!
There was an error while loading.Please reload this page.
freakboy3742 left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
This mostly makes sense; a couple of minor clarification questions inline.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase |
mhsmith commentedSep 27, 2025
I have made the requested changes; please review again. |
Thanks for making the requested changes! @freakboy3742: please review the changes made to this pull request. |
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase |
mhsmith commentedOct 4, 2025
I have made the requested changes; please review again. |
Thanks for making the requested changes! @freakboy3742: please review the changes made to this pull request. |
freakboy3742 left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
👍 Thanks for those changes (and explanations) - looks like a solid set of improvements.
a9b0506 intopython:mainUh oh!
There was an error while loading.Please reload this page.
Thanks@mhsmith for the PR, and@freakboy3742 for merging it 🌮🎉.. I'm working now to backport this PR to: 3.13, 3.14. |
…e options (pythonGH-138805)Modifies the Android test runner to ensure that all valid Python command lineoptions are preserved when running the test suite.(cherry picked from commita9b0506)Co-authored-by: Malcolm Smith <smith@chaquo.com>
…e options (pythonGH-138805)Modifies the Android test runner to ensure that all valid Python command lineoptions are preserved when running the test suite.(cherry picked from commita9b0506)Co-authored-by: Malcolm Smith <smith@chaquo.com>
GH-139637 is a backport of this pull request to the3.14 branch. |
GH-139638 is a backport of this pull request to the3.13 branch. |
…e options (python#138805)Modifies the Android test runner to ensure that all valid Python command lineoptions are preserved when running the test suite.
Uh oh!
There was an error while loading.Please reload this page.
#138649 andpython/buildmaster-config#628 switched GitHub Actions and the buildbots over to using
--fast-ciand--slow-cion Android. However, this has introduced a warning, which hasturned the buildbots orange:Android runs the tests embedded in a larger app, so it's not possible to change the Python options by calling
execv. Instead, this PR adds the ability to pass all Python command-line options to the Android testbed, so the options can be set to the expected values from the start.This may also be useful in cibuildwheel, as it'll allow the testbed to accept a wider range of Python test commands (pypa/cibuildwheel#2590).