Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork34.1k
Comments
gh-71052: Add test exclusions to support running the test suite on Android#115918
Merged
erlend-aasland merged 3 commits intopython:mainfromFeb 29, 2024
Merged
gh-71052: Add test exclusions to support running the test suite on Android#115918erlend-aasland merged 3 commits intopython:mainfrom
erlend-aasland merged 3 commits intopython:mainfrom
Conversation
c5bec30 tof2e8385CompareUh oh!
There was an error while loading.Please reload this page.
Co-authored-by: Kirill Podoprigora <kirill.bast9@mail.ru>
Comment on lines -2495 to +2501
| os.chdir(os.sep) | ||
| self.assertEqual(set(os.listdir()), set(os.listdir(os.sep))) | ||
| # The root directory is not readable on Android, so use a directory | ||
| # we created ourselves. | ||
| os.chdir(self.dir) | ||
| self.assertEqual(set(os.listdir()), expected) |
Member
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.
looks good
MemberAuthor
mhsmith commentedFeb 29, 2024
@erlend-aasland: You reviewed the equivalent PR for iOS (#114889); would you like to take a look at this one for Android? It's much smaller. |
erlend-aasland approved these changesFeb 29, 2024
Contributor
erlend-aasland 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.
Looks good to me; thanks!
woodruffw pushed a commit to woodruffw-forks/cpython that referenced this pull requestMar 4, 2024
adorilson pushed a commit to adorilson/cpython that referenced this pull requestMar 25, 2024
diegorusso pushed a commit to diegorusso/cpython that referenced this pull requestApr 17, 2024
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 freeto 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.
Uh oh!
There was an error while loading.Please reload this page.
This PR builds on#114889 by@freakboy3742. It marks Android as not supporting subprocesses, and skips some additional tests which can't be run on this platform.
Some multiprocessing-related test changes have been submitted separately in#115917.