From db48b2ba349131f1ddbcb8851fd8603d01afea28 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 15 Jan 2015 21:35:11 -0800 Subject: [PATCH] Exclude external libraries from code coverage --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e1cfad31623..b9427d41b24 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,6 @@ install: script: - flake8 homeassistant --exclude bower_components,external - pylint homeassistant - - coverage run --source=homeassistant -m unittest discover tests + - coverage run --source=homeassistant --omit "homeassistant/external/*" -m unittest discover tests after_success: - coveralls