Skip to content

Commit 74ad6b2

Browse files
committed
Skip one test_socketserver.py test (also reformat)
1 parent 2806e4c commit 74ad6b2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

3.7.ignore_some_tests.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
def fix(filename):
88
# Don't apply these hacks to script_helper.py directly.
9-
if filename.endswith('script_helper.py'):
9+
if filename.endswith("script_helper.py"):
1010
return
1111

1212
with open(filename) as fd:
@@ -60,6 +60,9 @@ def fix(filename):
6060
or "self.assertIsInstance(value.gr_name, str)" in line
6161
# Similar for pwd (password file) module
6262
or "self.assertIsInstance(e.pw_gecos, str)" in line
63+
# test_socketserver.py has a test for signals & UNIX sockets interactions; this test hangs on Android.
64+
# Skip for now.
65+
or "test.support.get_attribute(signal, 'pthread_kill')" in line
6366
):
6467
matching_lines.append(i)
6568

0 commit comments

Comments
 (0)