| 1234567891011121314151617181920212223242526272829303132333435 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "Install requirements",
- "type": "shell",
- "command": "pip3 install -r requirements-dev.txt",
- "problemMatcher": []
- },
- {
- "label": "Run Home Assistant on port 8123",
- "type": "shell",
- "command": "python -m homeassistant",
- "problemMatcher": []
- },
- {
- "label": "Upgrade Home Assistant to latest dev",
- "type": "shell",
- "command": "pip install -U home-assistant",
- "problemMatcher": []
- },
- {
- "label": "Unit tests",
- "type": "shell",
- "command": "pytest --cov=. --cov-config=.coveragerc --cov-report xml:coverage.xml",
- "problemMatcher": []
- },
- {
- "label": "Reformat code",
- "type": "shell",
- "command": "isort . && black .",
- "problemMatcher": []
- }
- ]
- }
|