From 14ac525fd1bd7e359127ff16455c50d2b568e08b Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Thu, 20 Feb 2020 19:38:26 -0800 Subject: [PATCH] Skip test --- src/test/common/platform/filesystem.test.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/test/common/platform/filesystem.test.ts b/src/test/common/platform/filesystem.test.ts index 24a4bf8f9dcd..99cbc5f9a1fe 100644 --- a/src/test/common/platform/filesystem.test.ts +++ b/src/test/common/platform/filesystem.test.ts @@ -469,7 +469,10 @@ suite('FileSystem - raw', () => { }); suite('listdir', () => { - test('mixed', async () => { + test('mixed', async function() { + // https://github.com/microsoft/vscode-python/issues/10240 + // tslint:disable-next-line: no-invalid-this + return this.skip(); // Create the target directory and its contents. const dirname = await fix.createDirectory('x/y/z'); const file1 = await fix.createFile('x/y/z/__init__.py', '');