mirror of https://github.com/python/cpython
Avoid test_asyncio hang on AIX.
This commit is contained in:
parent
410d931a17
commit
8a0fe85fbe
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue