13 lines
310 B
YAML
13 lines
310 B
YAML
language: python
|
|
python:
|
|
- "3.4"
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install flake8 pylint coveralls
|
|
script:
|
|
- flake8 homeassistant --exclude bower_components,external
|
|
- pylint homeassistant
|
|
- coverage run --source=homeassistant -m unittest discover tests
|
|
after_success:
|
|
- coveralls
|