Skip to content

Instantly share code, notes, and snippets.

@hneiva
Created December 7, 2022 23:26
Show Gist options
  • Save hneiva/4bb0b388550eca6b3708bb7c1c9ed43c to your computer and use it in GitHub Desktop.
Save hneiva/4bb0b388550eca6b3708bb7c1c9ed43c to your computer and use it in GitHub Desktop.
Debug taskgraph from vscode
{
"version": "0.2.0",
"configurations": [
{
"name": "Taskgraph full",
"type": "python",
"request": "launch",
"program": "", // <---- Add value from `pyenv which taskgraph` (or just `which taskgraph` if you don't use pyenv)
"console": "integratedTerminal",
"args": ["full", "-p", "taskcluster/test/params"], // Adjust these as needed
"justMyCode": false
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment