2014-11-09 23:28:46 +00:00
|
|
|
language: python
|
|
|
|
python:
|
2014-11-11 17:14:00 +00:00
|
|
|
- "3.4"
|
|
|
|
install:
|
|
|
|
- pip install -r requirements.txt
|
2014-11-17 06:18:52 +00:00
|
|
|
- pip install flake8 pylint coveralls
|
2014-11-09 23:28:46 +00:00
|
|
|
script:
|
2014-11-17 06:18:52 +00:00
|
|
|
- flake8 homeassistant --exclude bower_components,external
|
2014-11-12 06:18:35 +00:00
|
|
|
- pylint homeassistant
|
2015-03-07 15:49:19 +00:00
|
|
|
- coverage run -m unittest discover tests
|
2014-11-15 06:23:48 +00:00
|
|
|
after_success:
|
|
|
|
- coveralls
|