-
-
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
gh-114099: Add test exclusions to support running the test suite on iOS #114889
Changes from all commits
3f83f4c
490b8b1
a38e92b
74803b1
86cbced
bc7543b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -160,6 +160,7 @@ def setUp(self): | |
self.console = code.InteractiveConsole(local_exit=True) | ||
self.mock_sys() | ||
|
||
@unittest.skipIf(sys.flags.no_site, "exit() isn't defined unless there's a site module") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does this work if the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It does - the |
||
def test_exit(self): | ||
# default exit message | ||
self.infunc.side_effect = ["exit()"] | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,9 @@ | |
import struct | ||
import sys | ||
import unittest | ||
from test.support import verbose, cpython_only, get_pagesize | ||
from test.support import ( | ||
cpython_only, get_pagesize, is_apple, requires_subprocess, verbose | ||
) | ||
Comment on lines
+9
to
+11
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You seem to do this change often. In the future, could you add a trailing comma, to make future diffs nicer?
) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @encukou Sure, no problem. One of the issues I've hit is that the "preferred" style for imports varies wildly between files. I appreciate there's 30 years of historical baggage in the existing code - but is there a reason either of those two approaches is preferred over isort/black style syntax:
Running black over every file I touch would make for unreadable patches; but if little black touches when the line is already being altered would be looked on favourably, then that's an easy tweak to make. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That works too -- there's a trailing comma, so future diffs won't need to add it. (The 30 years of baggage also means there is no shared preference for stuff that isn't in PEP 8. I'm partial to repeating
Sure! As long as it helps readability :) |
||
from test.support.import_helper import import_module | ||
from test.support.os_helper import TESTFN, unlink | ||
|
||
|
@@ -56,8 +58,10 @@ def get_lockdata(): | |
else: | ||
start_len = "qq" | ||
|
||
if (sys.platform.startswith(('netbsd', 'freebsd', 'openbsd')) | ||
or sys.platform == 'darwin'): | ||
if ( | ||
sys.platform.startswith(('netbsd', 'freebsd', 'openbsd')) | ||
or is_apple | ||
): | ||
if struct.calcsize('l') == 8: | ||
off_t = 'l' | ||
pid_t = 'i' | ||
|
@@ -157,6 +161,7 @@ def test_flock(self): | |
self.assertRaises(TypeError, fcntl.flock, 'spam', fcntl.LOCK_SH) | ||
|
||
@unittest.skipIf(platform.system() == "AIX", "AIX returns PermissionError") | ||
@requires_subprocess() | ||
def test_lockf_exclusive(self): | ||
self.f = open(TESTFN, 'wb+') | ||
cmd = fcntl.LOCK_EX | fcntl.LOCK_NB | ||
|
@@ -169,6 +174,7 @@ def test_lockf_exclusive(self): | |
self.assertEqual(p.exitcode, 0) | ||
|
||
@unittest.skipIf(platform.system() == "AIX", "AIX returns PermissionError") | ||
@requires_subprocess() | ||
def test_lockf_share(self): | ||
self.f = open(TESTFN, 'wb+') | ||
cmd = fcntl.LOCK_SH | fcntl.LOCK_NB | ||
|
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.
Nice. Much cleaner.