{ "version": "2.0.0", "tasks": [ { "label": "Run Supervisor", "type": "shell", "command": "./scripts/supervisor.sh", "group": { "kind": "test", "isDefault": true }, "presentation": { "reveal": "always", "panel": "new" }, "problemMatcher": [] }, { "label": "Run Supervisor CLI", "type": "shell", "command": "docker exec -ti hassio_cli /usr/bin/cli.sh", "group": { "kind": "test", "isDefault": true }, "presentation": { "reveal": "always", "panel": "new" }, "problemMatcher": [] }, { "label": "Update Supervisor Panel", "type": "shell", "command": "./scripts/update-frontend.sh", "group": { "kind": "build", "isDefault": true }, "presentation": { "reveal": "always", "panel": "new" }, "problemMatcher": [] }, { "label": "Pytest", "type": "shell", "command": "pytest --timeout=10 tests", "group": { "kind": "test", "isDefault": true }, "presentation": { "reveal": "always", "panel": "new" }, "problemMatcher": [] }, { "label": "Flake8", "type": "shell", "command": "flake8 supervisor tests", "group": { "kind": "test", "isDefault": true }, "presentation": { "reveal": "always", "panel": "new" }, "problemMatcher": [] }, { "label": "Pylint", "type": "shell", "command": "pylint supervisor", "dependsOn": ["Install all Requirements"], "group": { "kind": "test", "isDefault": true }, "presentation": { "reveal": "always", "panel": "new" }, "problemMatcher": [] } ] }