From 6a2539c43412567a4c693da8e7fdf5e73191fd16 Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Tue, 27 Mar 2018 17:17:28 -0400 Subject: [PATCH] bpo-32517: re-enable test_read_pty_output on macOS (GH-6112) --- Lib/test/test_asyncio/test_events.py | 1 - 1 file changed, 1 deletion(-) 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) -- 2.50.1