mirror of
https://github.com/home-assistant/core.git
synced 2025-07-29 08:07:45 +00:00
14 lines
267 B
YAML
14 lines
267 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- "3.4"
|
|
install:
|
|
- pip install -r requirements_all.txt
|
|
- pip install flake8 pylint coveralls
|
|
script:
|
|
- flake8 homeassistant
|
|
- pylint homeassistant
|
|
- coverage run -m unittest discover tests
|
|
after_success:
|
|
- coveralls
|