Revised main to use frontend and demo strings rather than importing their domains. Removed submodule validation. Moved local library mounting to the bootstrap module and out of core. Added requirements_all.txt for all dependencies. Made core dependencies looser. Small updates to setup.py.
13 lines
303 B
YAML
13 lines
303 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- "3.4"
|
|
install:
|
|
- pip install -r requirements_all.txt
|
|
- pip install flake8 pylint coveralls
|
|
script:
|
|
- flake8 homeassistant --exclude bower_components,external
|
|
- pylint homeassistant
|
|
- coverage run -m unittest discover tests
|
|
after_success:
|
|
- coveralls
|