From 26934a32dcdad554984a6ef00fcd48c832c76ea2 Mon Sep 17 00:00:00 2001 From: noah morrison Date: Sat, 9 May 2015 21:43:26 -0400 Subject: [PATCH] Ok, this time I think I actually fixed coverage The --source flag should tell coverage to only test chevron, hopefully... --- .coveragerc | 7 ------- .travis.yml | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/.coveragerc b/.coveragerc index e24d28f..e8db2a5 100644 --- a/.coveragerc +++ b/.coveragerc @@ -1,10 +1,3 @@ -[run] -omit = - /usr/lib/python2.6/site-packages/* - /usr/lib/python2.7/site-packages/* - /usr/lib/python3.3/site-packages/* - /usr/lib/python3.4/site-packages/* - [report] exclude_lines = if __name__ == .__main__.: diff --git a/.travis.yml b/.travis.yml index 00fb9a8..10d028f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,6 @@ install: script: - flake8 . - ./test_spec.py - - coverage -x ./test_spec.py + - coverage run --source=chevron ./test_spec.py after_success: - coveralls -- 2.47.3