From eab0dd956e6134f8ce4d4f3df37677770065bf15 Mon Sep 17 00:00:00 2001 From: Richard C Gerkin Date: Tue, 10 Oct 2017 23:56:15 -0700 Subject: [PATCH] Actually ignore .eggs in coverage calculations --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7af9413f1..926b5c32c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,7 +29,7 @@ install: script: - export NC_HOME='.' # NeuroConstruct isn't used but tests need this # variable set to pass. - - coverage run --source=. --omit=*unit_test*,setup.py,.eggs setup.py test + - coverage run --source=. --omit=*unit_test*,setup.py,*.eggs* setup.py test after_success: - coveralls