vscode python单步调试_调试期间VSCode python“未验证断点”?

我正在使用VSCode调试python应用程序。在

我有一个主python文件,从这里启动调试器。我可以在这个文件中放置断点,但是如果我想在主文件调用的其他文件中放置断点,我会将它们作为“未验证的断点”得到,调试器会忽略它们。在

如何更改我的launch.json以便能够在项目中的所有文件上设置断点?在

这是我当前的launch.json:

{

// 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": "python",

"request": "launch",

"program": "${file}"

},

{

"name": "Python: Attach",

"type": "python",

"request": "attach",

"localRoot": "${workspaceFolder}",

"remoteRoot": "${workspaceFolder}",

"port": 3000,

"secret": "my_secret",

"host": "localhost"

},

{

"name": "Python: Terminal (integrated)",

"type": "python",

"request": "launch",

"program": "${file}",

"console": "integratedTerminal"

},

{

"name": "Python: Terminal (external)",

"type": "python",

"request": "launch",

"program": "${file}",

"console": "externalTerminal"

},

{

"name": "Python: Django",

"type": "python",

"request": "launch",

"program": "${workspaceFolder}/manage.py",

"args": [

"runserver",

"--noreload",

"--nothreading"

],

"debugOptions": [

"RedirectOutput",

"Django"

]

},

{

"name": "Python: Flask (0.11.x or later)",

"type": "python",

"request": "launch",

"module": "flask",

"env": {

"FLASK_APP": "${workspaceFolder}/app.py"

},

"args": [

"run",

"--no-debugger",

"--no-reload"

]

},

{

"name": "Python: Module",

"type": "python",

"request": "launch",

"module": "nf.session.session"

},

{

"name": "Python: Pyramid",

"type": "python",

"request": "launch",

"args": [

"${workspaceFolder}/development.ini"

],

"debugOptions": [

"RedirectOutput",

"Pyramid"

]

},

{

"name": "Python: Watson",

"type": "python",

"request": "launch",

"program": "${workspaceFolder}/console.py",

"args": [

"dev",

"runserver",

"--noreload=True"

]

},

{

"name": "Python: All debug Options",

"type": "python",

"request": "launch",

"pythonPath": "${config:python.pythonPath}",

"program": "${file}",

"module": "module.name",

"env": {

"VAR1": "1",

"VAR2": "2"

},

"envFile": "${workspaceFolder}/.env",

"args": [

"arg1",

"arg2"

],

"debugOptions": [

"RedirectOutput"

]

}

]

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值