diff --git a/.travis.yml b/.travis.yml index 841b08a5d0e..a1b0a76972a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,10 @@ language: python python: - - "3.4" + - "3.4" +install: + - pip install -r requirements.txt + - pip install pep8 script: - python -m homeassistant -t test + - pep8 homeassistant --exclude bower_components,external + - python -m homeassistant -t test +