Skip to content

Commit 7b043db

Browse files
Disable test (#13346) (#13350)
Co-authored-by: Rich Chiodo <[email protected]>
1 parent 96119c1 commit 7b043db

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/test/linters/lint.multilinter.test.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,12 @@ suite('Linting - Multiple Linters Enabled Test', () => {
8888
return `linting.${linterManager.getLinterInfo(product).enabledSettingName}` as PythonSettingKeys;
8989
}
9090

91-
test('Multiple linters', async () => {
91+
test('Multiple linters', async function () {
92+
// This test is failing in the CI. See this issue here:
93+
// https://github.com/microsoft/vscode-python/issues/13345
94+
// tslint:disable-next-line: no-invalid-this
95+
this.skip();
96+
9297
await closeActiveWindows();
9398
const document = await workspace.openTextDocument(path.join(pythoFilesPath, 'print.py'));
9499
await window.showTextDocument(document);

0 commit comments

Comments
 (0)