user vscode

This commit is contained in:
2026-06-11 20:57:38 +00:00
parent eaa3d83aed
commit c6ed55e111
9 changed files with 163 additions and 71 deletions
+21 -3
View File
@@ -1,4 +1,22 @@
{
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
"python.terminal.activateEnvironment": true
}
"terminal.integrated.env.linux": {
"VIRTUAL_ENV": "/workspace/.venv",
"PATH": "/workspace/.venv/bin:${env:PATH}"
},
"terminal.integrated.defaultProfile.linux": "DocExtractor venv",
"terminal.integrated.profiles.linux": {
"DocExtractor venv": {
"path": "bash",
"args": [
"--rcfile",
"/workspace/.devcontainer/bashrc"
]
}
},
"python.defaultInterpreterPath": "/workspace/.venv/bin/python",
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"python.testing.pytestArgs": [
"tests"
]
}