added python tests config to workspace settings
This commit is contained in:
18
.vscode/settings.json
vendored
18
.vscode/settings.json
vendored
@@ -1,14 +1,20 @@
|
|||||||
{
|
{
|
||||||
|
"python.testing.pytestEnabled": false,
|
||||||
|
"python.testing.unittestEnabled": true,
|
||||||
|
"python.analysis.extraPaths": [
|
||||||
|
"./src/service"
|
||||||
|
],
|
||||||
|
|
||||||
"python.testing.unittestArgs": [
|
"python.testing.unittestArgs": [
|
||||||
"-v",
|
"-v",
|
||||||
"-s",
|
"-s",
|
||||||
"./test",
|
"./test",
|
||||||
"-p",
|
"-p",
|
||||||
"test_*.py"
|
"test_*.py",
|
||||||
|
"-t",
|
||||||
|
"./test"
|
||||||
],
|
],
|
||||||
"python.testing.pytestEnabled": false,
|
"python.testing.autoTestDiscoverOnSavePattern": "test/**/test_*.py",
|
||||||
"python.testing.unittestEnabled": true,
|
"python.envFile": "${workspaceFolder}/.env",
|
||||||
"python.analysis.extraPaths": [
|
"python.testing.autoTestDiscoverOnSaveEnabled": true,
|
||||||
"./src/service"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user