mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Disable attach_by_pid(wait=True) tests on Win32 and Mac due to #1926
This commit is contained in:
parent
bc40fef197
commit
75a7417e87
1 changed files with 2 additions and 0 deletions
|
|
@ -162,6 +162,8 @@ def _attach_common_config(session, target, cwd):
|
|||
def attach_by_pid(session, target, cwd=None, wait=True):
|
||||
if sys.version_info < (3,) and sys.platform == "win32":
|
||||
pytest.skip("https://github.com/microsoft/ptvsd/issues/1811")
|
||||
if wait and not sys.platform.startswith("linux"):
|
||||
pytest.skip("https://github.com/microsoft/ptvsd/issues/1926")
|
||||
|
||||
log.info("Attaching {0} to {1} by PID.", session, target)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue