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

14 lines
267 B
YAML
Raw Normal View History

2015-07-11 07:00:13 +02:00
sudo: false
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_all.txt
- pip install flake8 pylint coveralls
2014-11-10 00:28:46 +01:00
script:
- flake8 homeassistant
2014-11-12 07:18:35 +01:00
- pylint homeassistant
- coverage run -m unittest discover tests
after_success:
- coveralls