Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Lib/test/test_asyncio/test_subprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,9 @@ async def cancel_make_transport():
test_utils.run_briefly(self.loop)

def test_close_kill_running(self):
if (sys.platform != "win32" and
self.Watcher == asyncio.MultiLoopChildWatcher):
self.skipTest("Temporary skip until bpo-38323 is fixed")

async def kill_running():
create = self.loop.subprocess_exec(asyncio.SubprocessProtocol,
Expand Down