Skip to content

Commit 07cc8aa

Browse files
committed
added vscode test settings
1 parent b1e3314 commit 07cc8aa

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

.vscode/launch.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Python Debugger: Current File",
9+
"type": "debugpy",
10+
"request": "launch",
11+
"program": "${file}",
12+
"console": "integratedTerminal"
13+
}
14+
]
15+
}

.vscode/settings.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"python.testing.pytestArgs": [
3-
"test"
4-
],
2+
"python.testing.pytestEnabled": true,
53
"python.testing.unittestEnabled": false,
6-
"python.testing.pytestEnabled": true
7-
}
4+
"python.testing.pytestArgs": ["test"],
5+
"python.testing.autoTestDiscoverOnSaveEnabled": true
6+
}
7+

0 commit comments

Comments
 (0)