core/.travis.yml

13 lines
287 B
YAML
Raw Normal View History

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
- pip install flake8 pylint coveralls
2014-11-09 23:28:46 +00:00
script:
- flake8 homeassistant --exclude bower_components,external
2014-11-12 06:18:35 +00:00
- pylint homeassistant
- coverage run -m unittest discover tests
after_success:
- coveralls