Skip to content

Commit 4fc7a03

Browse files
committed
Added VSCode launcher
1 parent 57a27c6 commit 4fc7a03

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.vscode/launch.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
// Utilisez IntelliSense pour en savoir plus sur les attributs possibles.
3+
// Pointez pour afficher la description des attributs existants.
4+
// Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Python : Test launcher",
9+
"type": "python",
10+
"request": "launch",
11+
"program": "${workspaceFolder}/qwt/tests/__init__.py",
12+
"console": "integratedTerminal"
13+
},
14+
{
15+
"name": "Python : Current file",
16+
"type": "python",
17+
"request": "launch",
18+
"program": "${file}",
19+
"console": "integratedTerminal"
20+
}
21+
]
22+
}

0 commit comments

Comments
 (0)