Skip to content

Commit

Permalink
Add support for coveralls.
Browse files Browse the repository at this point in the history
  • Loading branch information
jklmli committed Aug 19, 2013
1 parent a952cf3 commit c04e41f
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# :LINK: Taken from https://github.com/amoa/tidehunter/blob/master/.coveragerc

[run]
omit =
*/python?.?/*
*/lib-python/?.?/*.py
*/lib_pypy/_*.py
*/site-packages/ordereddict.py
*/site-packages/nose/*
*/unittest2/*

exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
8 changes: 7 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,10 @@ python:
- "2.7"
- "3.2"
- "3.3"
script: nosetests
install:
- pip install -r requirements.txt --use-mirrors
- pip install coveralls --use-mirrors
script:
- nosetests --with-coverage --cover-package=redux
after_success:
- coveralls
Empty file added requirements.txt
Empty file.

0 comments on commit c04e41f

Please sign in to comment.