1
mirror of https://github.com/home-assistant/core synced 2024-09-25 00:41:32 +02:00
ha-core/.travis.yml

13 lines
304 B
YAML
Raw Normal View History

2014-11-10 00:28:46 +01:00
language: python
python:
2014-11-11 18:14:00 +01:00
- "3.4"
install:
- pip install -r requirements.txt
- pip install pep8 pylint coveralls
2014-11-10 00:28:46 +01:00
script:
2014-11-11 18:14:00 +01:00
- pep8 homeassistant --exclude bower_components,external
2014-11-12 07:18:35 +01:00
- pylint homeassistant
- coverage run --source=homeassistant -m homeassistant -t test
after_success:
- coveralls