From 3fc156ca32e7ece2e4500106327b6db9a41370da Mon Sep 17 00:00:00 2001 From: Pavel Minaev Date: Thu, 14 Nov 2019 12:45:56 -0800 Subject: [PATCH] Disable attach-to-PID tests on Travis due to #1915. --- tests/debug/runners.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/debug/runners.py b/tests/debug/runners.py index 4787f967..ff40236a 100644 --- a/tests/debug/runners.py +++ b/tests/debug/runners.py @@ -152,6 +152,8 @@ def _attach_common_config(session, target, cwd): @_runner def attach_by_pid(session, target, cwd=None, wait=True): + if os.getenv("TRAVIS"): + pytest.skip("https://github.com/microsoft/ptvsd/issues/1915") if sys.version_info < (3,) and platform.system() == "Windows": pytest.skip("https://github.com/microsoft/ptvsd/issues/1811")