Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "๐งช Run unit tests that match the expression",
- "type": "shell",
- "command": "pytest -k '${input:expression}'"
- },
- {
- "label": "๐ฎ Cowsay",
- "type": "shell",
- "command": "echo ${input:cowmsg} | cowsay"
- }
- {
- "label": "build",
- "group": "build",
- "type": "shell",
- "command": "scons",
- "args": [
- // enable for debugging with breakpoints
- "dev_build=yes",
- ],
- "problemMatcher": "$msCompile"
- }
- ],
- "inputs": [
- {
- "id": "expression",
- "description": "Expression to filter tests with",
- "default": "",
- "type": "promptString"
- },
- {
- "id": "cowmsg",
- "description": "Message for cow to say",
- "default": "Hello there!",
- "type": "promptString"
- }
- ]
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement