Commit 80152d73 authored by Guido van Rossum's avatar Guido van Rossum

Avoid test_asyncio hang on AIX.

parent f7ea2150
......@@ -1200,6 +1200,9 @@ class EventLoopTestsMixin:
@unittest.skipIf(sys.platform == 'win32',
"Don't support subprocess for Windows yet")
# Issue #19293
@unittest.skipIf(sys.platform.startswith("aix"),
'cannot be interrupted with signal on AIX')
def test_subprocess_close_client_stream(self):
proto = None
transp = None
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment