Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/test/linters/lint.multilinter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,12 @@ suite('Linting - Multiple Linters Enabled Test', () => {
return `linting.${linterManager.getLinterInfo(product).enabledSettingName}` as PythonSettingKeys;
}

test('Multiple linters', async () => {
test('Multiple linters', async function () {
// This test is failing in the CI. See this issue here:
// https://github.com/microsoft/vscode-python/issues/13345
// tslint:disable-next-line: no-invalid-this
this.skip();

await closeActiveWindows();
const document = await workspace.openTextDocument(path.join(pythoFilesPath, 'print.py'));
await window.showTextDocument(document);
Expand Down