We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6170c64 commit 69a40ffCopy full SHA for 69a40ff
1 file changed
src/features/creators/autoFindProjects.ts
@@ -57,7 +57,7 @@ export class AutoFindProjects implements PythonProjectCreator {
57
constructor(private readonly pm: PythonProjectManager) {}
58
59
async create(_options?: PythonProjectCreatorOptions): Promise<PythonProject | PythonProject[] | undefined> {
60
- const files = await findFiles('**/{pyproject.toml,setup.py}');
+ const files = await findFiles('**/{pyproject.toml,setup.py}', '**/.venv/**');
61
if (!files || files.length === 0) {
62
setImmediate(() => {
63
showErrorMessage('No projects found');
0 commit comments