Skip to content

Instantly share code, notes, and snippets.

@BroHui
Created November 1, 2022 04:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BroHui/9e4e2e194252eea745f7a541cada7a32 to your computer and use it in GitHub Desktop.
Save BroHui/9e4e2e194252eea745f7a541cada7a32 to your computer and use it in GitHub Desktop.
VSCode python & pytest launch.json sample
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Pytest: Current File",
"type": "python",
"request": "launch",
"args": [
"${fileBasenameNoExtension}_test.py"
],
"module": "pytest",
"console": "integratedTerminal",
"cwd": "${fileDirname}",
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment