From 8ae9faf1284fcef22b87c32327cce549f2a748d9 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 11 Nov 2014 09:14:00 -0800 Subject: [PATCH] Added PEP8 checking to Travis --- .travis.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 841b08a5d0e68a..a1b0a76972a754 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 +