added python tests config to workspace settings

This commit is contained in:
2025-03-20 19:46:05 -03:00
parent a7b292f437
commit 90a9b244d7

18
.vscode/settings.json vendored
View File

@@ -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"
]
} }