Re-enable attach by socket on macOS + Python 3.6 (per #1967).

This commit is contained in:
Pavel Minaev 2020-09-25 13:13:01 -07:00
parent 6e1c7567d2
commit d68a17170c

View file

@ -9,7 +9,6 @@ import itertools
import os
import psutil
import py
import pytest
import subprocess
import sys
import time
@ -457,10 +456,6 @@ class Session(object):
)
def send_request(self, command, arguments=None, proceed=True):
if command == "attach":
if sys.version_info[:2] == (3, 6) and sys.platform == "darwin":
pytest.skip("https://github.com/microsoft/ptvsd/issues/1967")
self.before_request(command, arguments)
if self.timeline.is_frozen and proceed: