Skip to content

Instantly share code, notes, and snippets.

View friveroll's full-sized avatar

Felipe Riveroll Aguirre friveroll

View GitHub Profile
@friveroll
friveroll / settings.json
Created November 20, 2022 02:47
Settings VSCode python environments
{
"python.defaultInterpreterPath": "${workspaceFolder}\\.venv\\Scripts\\python.exe",
"python.venvPath": "${workspaceFolder}\\.venv",
"python.terminal.defaultProfile.windows": "pwsh",
"python.terminal.activateEnvironment": true,
"python.linting.pylintEnabled": true,
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.pytestArgs": ["--collect-only"],