10 lines
205 B
YAML
10 lines
205 B
YAML
language: python
|
|
python:
|
|
- "3.4"
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install pep8
|
|
script:
|
|
- pep8 homeassistant --exclude bower_components,external
|
|
- python -m homeassistant -t test
|
|
|