-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathlaunch.json
More file actions
48 lines (48 loc) · 1.65 KB
/
launch.json
File metadata and controls
48 lines (48 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
},
{
// Run the Python samples.
// tcod will be built and installed in editalbe mode.
"name": "Python: Python samples",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/examples/samples_tcod.py",
"cwd": "${workspaceFolder}/examples",
"console": "integratedTerminal",
},
{
"name": "Python: Run tests",
"type": "debugpy",
"request": "launch",
"module": "pytest",
"preLaunchTask": "develop python-tcod",
},
{
"name": "Documentation: Launch Chrome",
"request": "launch",
"type": "chrome",
"url": "file://${workspaceFolder}/docs/_build/html/index.html",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "build documentation",
},
{
"name": "Documentation: Launch Edge",
"request": "launch",
"type": "msedge",
"url": "file://${workspaceFolder}/docs/_build/html/index.html",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "build documentation",
}
]
}