From 1a9b2c27396d27f89268121e26c6ca76e83df490 Mon Sep 17 00:00:00 2001 From: Kartik Raj Date: Tue, 7 Jan 2020 14:12:51 -0800 Subject: [PATCH] Disable Standard Debugging tests of ports and hosts --- src/test/debugger/portAndHost.test.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/test/debugger/portAndHost.test.ts b/src/test/debugger/portAndHost.test.ts index 8cce2fd01711..d43c5e5ee4bf 100644 --- a/src/test/debugger/portAndHost.test.ts +++ b/src/test/debugger/portAndHost.test.ts @@ -25,6 +25,11 @@ const debuggerType = DebuggerTypeName; // tslint:disable-next-line:max-func-body-length suite(`Standard Debugging of ports and hosts: ${debuggerType}`, () => { let debugClient: DebugClient; + suiteSetup(async function() { + // https://github.com/microsoft/vscode-python/issues/9383 + // tslint:disable-next-line:no-invalid-this + return this.skip(); + }); setup(async function() { if (!IS_MULTI_ROOT_TEST || !TEST_DEBUGGER) { // tslint:disable-next-line:no-invalid-this