Skip to content

Commit

Permalink
Skip requirement files from site-packages or __pypackages__ (#20573)
Browse files Browse the repository at this point in the history
Fixes #20560
  • Loading branch information
karthiknadig authored Jan 26, 2023
1 parent 04753c4 commit 93b0053
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { showQuickPick } from '../../../common/vscodeApis/windowApis';
import { findFiles } from '../../../common/vscodeApis/workspaceApis';
import { traceError, traceVerbose } from '../../../logging';

const exclude = '**/{.venv*,.git,.nox,.tox,.conda}/**';
const exclude = '**/{.venv*,.git,.nox,.tox,.conda,site-packages,__pypackages__}/**';
async function getPipRequirementsFiles(
workspaceFolder: WorkspaceFolder,
token?: CancellationToken,
Expand Down

0 comments on commit 93b0053

Please sign in to comment.