From 28a3e5849c2174141a04a2250a921a2fb9daa799 Mon Sep 17 00:00:00 2001 From: Gerhard Weis Date: Thu, 27 Feb 2014 11:51:16 +1000 Subject: only report coverage for main module fix coveralls itegration (hopefully) --- .coveragerc | 3 +++ .travis.yml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .coveragerc diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000..6d23d9f --- /dev/null +++ b/.coveragerc @@ -0,0 +1,3 @@ +[run] +include=src/isodate/* +omit=src/isodate/tests/* diff --git a/.travis.yml b/.travis.yml index 57cb05c..4815f56 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,6 +21,6 @@ script: after_script: - if [ $TOXENV == "cover" ]; then - pip install --queiet --use-mirrors coveralls + pip install --quiet coveralls; coveralls; fi -- cgit v1.2.1