Created
September 23, 2020 12:32
-
-
Save AdamSaleh/8fa116a6c8e44fdaffd2a4763031faae to your computer and use it in GitHub Desktop.
Visual Studio Code debugging settings for monitor-gating
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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