Skip to content
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

Closed
wants to merge 1 commit into from

Conversation

4383
Copy link
Contributor

@4383 4383 commented Jun 23, 2018

Summary

Replace all platform test on darwin system with support.MACOS introduced by #7800

This pull request is focused on darwin, win will be replaced in another pull request.

https://bugs.python.org/issue33671

@4383 4383 requested review from 1st1, asvetlov, gpshead and a team as code owners June 23, 2018 13:47
@the-knights-who-say-ni
Copy link

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
and a Python core developer will remove the CLA not signed label
to make the bot check again.

Thanks again for your contribution, we look forward to reviewing it!

@4383
Copy link
Contributor Author

4383 commented Jun 23, 2018

Signed CLA :)

@@ -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':
Copy link
Member

@pablogsal pablogsal Jun 23, 2018

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).

@pablogsal
Copy link
Member

Hi @4383 and thank you for your contribution!

The CI is failing right now with this error:


ERROR: test_path_objects (test.test_logging.HandlerTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/travis/build/python/cpython/Lib/test/test_logging.py", line 616, in test_path_objects
    if MACOS or sys.platform == 'linux':
NameError: name 'MACOS' is not defined

Notice that to avoid waiting for the CI to fail in the PR you can run your tests locally. For example:

./configure --with-pydebug && make && make test

@4383 4383 force-pushed the support_ms_windows branch from 7137a90 to a77fcff Compare June 23, 2018 21:11
@4383 4383 force-pushed the support_ms_windows branch from a77fcff to 519fd6d Compare June 23, 2018 21:28
@ned-deily
Copy link
Member

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.

@4383
Copy link
Contributor Author

4383 commented Jun 23, 2018

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 :)

@ned-deily
Copy link
Member

It was decided to revert the changes in #7800 so this suggested PR no longer applies. Thanks again for your contribution, @4383

@ned-deily ned-deily closed this Jun 26, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants