From 4eaf59a1ce32cd012332bdbd357344058dc6518f Mon Sep 17 00:00:00 2001 From: Alan Hamlett Date: Tue, 29 Sep 2015 15:50:33 -0700 Subject: [PATCH] include non-executed python files in coverage report --- .travis.yml | 2 +- setup.cfg | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c9e34fa..c93a5e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ install: # use new travis-ci container-based infrastructure sudo: false # command to run tests -script: nosetests --with-coverage --cover-package=wakatime +script: nosetests # command to run after tests after_success: - coveralls diff --git a/setup.cfg b/setup.cfg index af3c06e..b3926fc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,6 @@ [nosetests] with-coverage = 1 +cover-inclusive = 1 cover-package = wakatime exclude-dir = wakatime/packages