23 lines
659 B
JSON
23 lines
659 B
JSON
{
|
|
"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"
|
|
]
|
|
}
|