18 lines
386 B
JSON
18 lines
386 B
JSON
{
|
|
"python.testing.pytestEnabled": true,
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.pytestArgs": [
|
|
"tests",
|
|
"-q"
|
|
],
|
|
"python.testing.cwd": "${workspaceFolder}",
|
|
"python.analysis.extraPaths": [
|
|
"${workspaceFolder}"
|
|
],
|
|
"python.envFile": "${workspaceFolder}/.env",
|
|
"files.exclude": {
|
|
"**/__pycache__": true,
|
|
"**/.pytest_cache": true
|
|
}
|
|
}
|