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
5 changes: 4 additions & 1 deletion src/test/common/platform/filesystem.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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', '');
Expand Down