Skip to content

Instantly share code, notes, and snippets.

@AdamSaleh
Created September 23, 2020 12:32
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 AdamSaleh/8fa116a6c8e44fdaffd2a4763031faae to your computer and use it in GitHub Desktop.
Save AdamSaleh/8fa116a6c8e44fdaffd2a4763031faae to your computer and use it in GitHub Desktop.
Visual Studio Code debugging settings for monitor-gating
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Monitor Gating Single",
"type": "python",
"request": "launch",
"module": "monitor_gating.single_build",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}",
"args": ["--no-pr", "--auto-update", "--conf", "monitor_gating.cfg"]
},
{
"name": "Python: Monitor Gating Multi",
"type": "python",
"request": "launch",
"module": "monitor_gating.multi_builds",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}",
"args": ["--conf", "monitor_gating.cfg"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment