Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name":"Device Simulation",
"type":"python",
"request":"launch",
"module":"tickit",
"justMyCode":false,
"console": "integratedTerminal",
"args": ["all", "${input:deviceConfig}"]
},
{
"name": "Debug Unit Test",
"type": "python",
Expand All @@ -21,5 +30,22 @@
"PYTEST_ADDOPTS": "--no-cov"
},
}
]
],
// Requires the following extension:
// Name: Command Variable
// Id: rioj7.command-variable
// Description: Calculate command variables for launch.json and tasks.json
// Version: 1.54.1
// Publisher: rioj7
// VS Marketplace Link: https://marketplace.visualstudio.com/items?itemName=rioj7.command-variable
"inputs": [
{
"id": "deviceConfig",
"type": "command",
"command": "extension.commandvariable.file.pickFile",
"args": {
"include": "{examples,s03_configs}/**/*.{yaml,yml}",
}
}
]
}