We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db0671d commit 8a06ebcCopy full SHA for 8a06ebc
1 file changed
.vscode/settings.json
@@ -20,4 +20,10 @@
20
"mypy-type-checker.path": ["${workspaceFolder}/.venv/bin/mypy"],
21
// prefer using mypy from the repo venv
22
"mypy-type-checker.importStrategy": "fromEnvironment",
23
+ // configure testing with unittest
24
+ "python.testing.unittestArgs": [
25
+ "-v", "-s", "./test", "-p", "test_*.py"
26
+ ],
27
+ "python.testing.pytestEnabled": false,
28
+ "python.testing.unittestEnabled": true,
29
}
0 commit comments