Add `.vscode/settings.json` to enable testing support in VS Code.

Signed-off-by: Daira Emma Hopwood <daira@jacaranda.org>
This commit is contained in:
Daira Emma Hopwood 2023-10-23 18:32:04 +01:00
parent 54cc568a9d
commit 582eb2dde4
1 changed files with 14 additions and 0 deletions

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

@ -0,0 +1,14 @@
{
"python.testing.unittestArgs": [
"-s",
"./simtfl",
"-t",
".",
"-p",
"[a-z]*.py",
"--verbose",
"--buffer"
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true
}