mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Close #20365: Skip test_asyncio.test_events.test_read_pty_output() on Mac OS X
older than 10.9 (Maverick). kqueue doesn't support character devices (PTY) on Mac OS X older than 10.9.
This commit is contained in:
parent
418e80ba00
commit
8ce6e1100e
1 changed files with 3 additions and 0 deletions
|
@ -957,6 +957,9 @@ class EventLoopTestsMixin:
|
|||
|
||||
@unittest.skipUnless(sys.platform != 'win32',
|
||||
"Don't support pipes for Windows")
|
||||
# kqueue doesn't support character devices (PTY) on Mac OS X older
|
||||
# than 10.9 (Maverick)
|
||||
@support.requires_mac_ver(10, 9)
|
||||
def test_read_pty_output(self):
|
||||
proto = None
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue