-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
bpo-33671: Replace platform test for darwin with support.MACOS #7875
Conversation
Hello, and thanks for your contribution! I'm a bot set up to make sure that the project can legally accept your contribution by verifying you have signed the PSF contributor agreement (CLA). Unfortunately we couldn't find an account corresponding to your GitHub username on bugs.python.org (b.p.o) to verify you have signed the CLA (this might be simply due to a missing "GitHub Name" entry in your b.p.o account settings). This is necessary for legal reasons before we can look at your contribution. Please follow the steps outlined in the CPython devguide to rectify this issue. When your account is ready, please add a comment in this pull request Thanks again for your contribution, we look forward to reviewing it! |
Signed CLA :) |
Lib/test/test_logging.py
Outdated
@@ -547,7 +547,7 @@ def test_name(self): | |||
def test_builtin_handlers(self): | |||
# We can't actually *use* too many handlers in the tests, | |||
# but we can try instantiating them with various options | |||
if sys.platform in ('linux', 'darwin'): | |||
if MACOS or sys.platform == 'linux': |
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.
The tests are failing because MACOS is not imported (You need to use `support.MACOS).
Hi @4383 and thank you for your contribution! The CI is failing right now with this error:
Notice that to avoid waiting for the CI to fail in the PR you can run your tests locally. For example:
|
Thanks for the contribution. But I think this or any similar changes should not be merged until we've further discussed the implications of #7800 itself. |
Hi @ned-deily, no problems, I can maintain these changes up-to-date during the time you need to measure implications of #7800 :) Hi @pablogsal, thanks for your help, I pushed too hastily. Errors fixed :) |
Summary
Replace all platform test on darwin system with
support.MACOS
introduced by #7800This pull request is focused on
darwin
,win
will be replaced in another pull request.https://bugs.python.org/issue33671