[Python-checkins] bpo-32517: re-enable test_read_pty_output on macOS (GH-6112)

Ned Deily webhook-mailer at python.org
Tue Mar 27 17:17:32 EDT 2018


https://github.com/python/cpython/commit/6a2539c43412567a4c693da8e7fdf5e73191fd16
commit: 6a2539c43412567a4c693da8e7fdf5e73191fd16
branch: 3.7
author: Ned Deily <nad at python.org>
committer: GitHub <noreply at github.com>
date: 2018-03-27T17:17:28-04:00
summary:

bpo-32517: re-enable test_read_pty_output on macOS (GH-6112)

files:
M Lib/test/test_asyncio/test_events.py

diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py
index f8bb01bd4e72..66c77b976dce 100644
--- a/Lib/test/test_asyncio/test_events.py
+++ b/Lib/test/test_asyncio/test_events.py
@@ -1475,7 +1475,6 @@ def test_unclosed_pipe_transport(self):
 
     @unittest.skipUnless(sys.platform != 'win32',
                          "Don't support pipes for Windows")
-    @unittest.skipIf(sys.platform == 'darwin', 'test hangs on MacOS')
     def test_read_pty_output(self):
         proto = MyReadPipeProto(loop=self.loop)
 



More information about the Python-checkins mailing list