-
-
Notifications
You must be signed in to change notification settings - Fork 30.6k
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gh-126789: Correct sysconfig test exclusions for iOS and Android. #126941
Conversation
!buildbot iOS |
🤖 New build scheduled with the buildbot fleet by @freakboy3742 for commit ca104cc 🤖 The command will test the builders whose names match following regular expression: The builders matched are:
|
!buildbot android |
🤖 New build scheduled with the buildbot fleet by @freakboy3742 for commit ca104cc 🤖 The command will test the builders whose names match following regular expression: The builders matched are:
|
!buildbot iOS |
🤖 New build scheduled with the buildbot fleet by @freakboy3742 for commit d77c708 🤖 The command will test the builders whose names match following regular expression: The builders matched are:
|
!buildbot android |
🤖 New build scheduled with the buildbot fleet by @freakboy3742 for commit d77c708 🤖 The command will test the builders whose names match following regular expression: The builders matched are:
|
Not sure what's going on with Bevedere, but he seems to have triggered a lot more builds than were requested... |
!buildbot iOS |
🤖 New build scheduled with the buildbot fleet by @freakboy3742 for commit a70f3e9 🤖 The command will test the builders whose names match following regular expression: The builders matched are:
|
!buildbot Android |
🤖 New build scheduled with the buildbot fleet by @freakboy3742 for commit a70f3e9 🤖 The command will test the builders whose names match following regular expression: The builders matched are:
|
Thanks @freakboy3742 for the PR, and @encukou for merging it 🌮🎉.. I'm working now to backport this PR to: 3.12, 3.13. |
Sorry, @freakboy3742 and @encukou, I could not cleanly backport this to
|
Sorry, @freakboy3742 and @encukou, I could not cleanly backport this to
|
GH-126950 is a backport of this pull request to the 3.13 branch. |
…d. (pythonGH-126941) (cherry picked from commit 3938fd6)
… Android. (pythonGH-126941) (cherry picked from commit 3938fd6)
… Android. (pythonGH-126941) (cherry picked from commit 3938fd6) Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
GH-126959 is a backport of this pull request to the 3.12 branch. |
#126812 (backported to 3.13 as #126918) added some new tests for the sysconfig module. These tests were skipped on WASI platforms - but the underlying problem exists on all platforms that don't provide subprocess.
This PR modifies the test skip to check for subprocess availability.
There's an argument to be made that this should also be backported to 3.12, as the original PR was backported (see #126919); but the fix isn't required there because iOS and Android aren't supported on 3.12.
sysconfig
data inconsistencies caused by the disabling thesite
initialization on virtual environments #126789