We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2806e4c commit 74ad6b2Copy full SHA for 74ad6b2
3.7.ignore_some_tests.py
@@ -6,7 +6,7 @@
6
7
def fix(filename):
8
# Don't apply these hacks to script_helper.py directly.
9
- if filename.endswith('script_helper.py'):
+ if filename.endswith("script_helper.py"):
10
return
11
12
with open(filename) as fd:
@@ -60,6 +60,9 @@ def fix(filename):
60
or "self.assertIsInstance(value.gr_name, str)" in line
61
# Similar for pwd (password file) module
62
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
66
):
67
matching_lines.append(i)
68
0 commit comments