20 lines
494 B
JSON
20 lines
494 B
JSON
{
|
|
"python.testing.pytestEnabled": false,
|
|
"python.testing.unittestEnabled": true,
|
|
"python.analysis.extraPaths": [
|
|
"./src/service"
|
|
],
|
|
|
|
"python.testing.unittestArgs": [
|
|
"-v",
|
|
"-s",
|
|
"./test",
|
|
"-p",
|
|
"test_*.py",
|
|
"-t",
|
|
"./test"
|
|
],
|
|
"python.testing.autoTestDiscoverOnSavePattern": "test/**/test_*.py",
|
|
"python.envFile": "${workspaceFolder}/.env",
|
|
"python.testing.autoTestDiscoverOnSaveEnabled": true,
|
|
} |