You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.6 KiB
83 lines
2.6 KiB
{ |
|
// 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", |
|
"justMyCode": true, |
|
},{ |
|
"name": "Python: Test Player", |
|
"type": "debugpy", |
|
"request": "launch", |
|
"program": "tests/pytest/test_001_demo.py", |
|
"console": "integratedTerminal", |
|
"justMyCode": true, |
|
"args": ["-p", "tmp/test.input.001.bin"] |
|
},{ |
|
"name": "Python: TTk Designer", |
|
"type": "debugpy", |
|
"request": "launch", |
|
"module": "ttkDesigner", |
|
"console": "integratedTerminal", |
|
"justMyCode": true, |
|
"env": { |
|
"PYTHONPATH": "./tools" |
|
} |
|
|
|
},{ |
|
"name": "Python: TTk Designer Quick", |
|
"type": "debugpy", |
|
"request": "launch", |
|
"module": "ttkDesigner", |
|
"console": "integratedTerminal", |
|
"justMyCode": true, |
|
"env": { |
|
"PYTHONPATH": "./tools" |
|
}, |
|
"args": ["ttkDesigner/tui/newWindow.tui.json"] |
|
},{ |
|
"name": "Python: DumbPaintTool", |
|
"type": "debugpy", |
|
"request": "launch", |
|
"program": "tools/dumbPaintTool.py", |
|
"console": "integratedTerminal", |
|
"justMyCode": true, |
|
"env": { |
|
"PYTHONPATH": "./tools" |
|
} |
|
},{ |
|
"name": "Python: DumbPaintTool File", |
|
"type": "debugpy", |
|
"request": "launch", |
|
"program": "tools/dumbPaintTool.py", |
|
"console": "integratedTerminal", |
|
"justMyCode": true, |
|
"env": { |
|
"PYTHONPATH": "./tools" |
|
}, |
|
"args":["experiments/untitled.DPT.json"] |
|
},{ |
|
"name": "Python: Demo", |
|
"type": "debugpy", |
|
"request": "launch", |
|
"program": "demo/demo.py", |
|
"console": "integratedTerminal", |
|
"justMyCode": true |
|
},{ |
|
"name": "Python: Demo Mouse tracking", |
|
"type": "debugpy", |
|
"request": "launch", |
|
"program": "demo/demo.py", |
|
"console": "integratedTerminal", |
|
"justMyCode": true, |
|
"args": ["-t"] |
|
}, |
|
] |
|
} |