From: Ned Deily Date: Tue, 27 Mar 2018 21:17:28 +0000 (-0400) Subject: bpo-32517: re-enable test_read_pty_output on macOS (GH-6112) X-Git-Tag: v3.7.0b3~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6a2539c43412567a4c693da8e7fdf5e73191fd16;p=python bpo-32517: re-enable test_read_pty_output on macOS (GH-6112) --- diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py index f8bb01bd4e..66c77b976d 100644 --- a/Lib/test/test_asyncio/test_events.py +++ b/Lib/test/test_asyncio/test_events.py @@ -1475,7 +1475,6 @@ class EventLoopTestsMixin: @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)