faker_diary/.vscode/launch.json

58 lines
1.7 KiB
JSON

{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: ptvsd",
"type": "python",
"request": "attach",
"port": 5678,
"host": "192.168.1.12",
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/opt/install/"
}
]
},
{
"name": "Python: 当前文件",
"type": "python",
"request": "launch",
"program": "${file}",
// "args": [
// "app5vfffdhz8371",
// "-pl"
// ],
"console": "integratedTerminal"
},
{
"name": "Python: main",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}\\bin\\faker_diary.py",
// "args": [
// "-k",
// "--tags=-wip",
// "feature\\01test.feature"
// ],
"console": "integratedTerminal"
//"cwd": "${workspaceRoot}\\tests"
},
{
"name": "start testcafe",
"type": "node",
"protocol": "inspector",
"request": "launch",
"program": "${workspaceRoot}/node_modules/testcafe/bin/testcafe.js",
"runtimeExecutable": "${workspaceRoot}/node/node.exe",
"args": [
"chrome",
"${relativeFile}"
],
"cwd": "${workspaceRoot}"
}
]
}