From f5e2bfe9a50b5d2ea24dd72b4c782e77b6af7284 Mon Sep 17 00:00:00 2001 From: Alessandro Molina Date: Wed, 4 Dec 2013 13:29:07 +0100 Subject: [PATCH] Add travis and coveralls informations --- .coveragerc | 5 +++++ .travis.yml | 17 +++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 .coveragerc create mode 100644 .travis.yml diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000..9cfd0fd --- /dev/null +++ b/.coveragerc @@ -0,0 +1,5 @@ +[report] +omit = + tests/* + */python?.?/* + */site-packages/nose/* diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..967b198 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +language: python +python: + - "2.6" + - "2.7" + - "3.2" + - "3.3" + +install: + - "pip install coverage" + - "pip install nose" + - "pip install coveralls" + - "pip install -e .[testing]" + +script: "nosetests -v --with-coverage --cover-package=crank --cover-erase" + +after_success: + coveralls