Add VSCode settings for unit testing

This commit is contained in:
sHa
2024-03-22 10:32:24 +02:00
parent 010571196e
commit c0ff939e04

11
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,11 @@
{
"python.testing.unittestArgs": [
"-v",
"-s",
"./tests",
"-p",
"test_*.py"
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true
}