diff options
author | Olle Lundberg <olle.lundberg@klarna.com> | 2014-01-21 18:50:20 +0100 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-01-21 14:00:34 -0800 |
commit | 5c5bf6e844d63a14f586d9166c536ab0978b684b (patch) | |
tree | b0a73e8ff28731a8d4ed5d8f502ee0de5aeba9f5 /.travis.yml | |
parent | a7ea04842eb178fa24471914fbaa6d38ec35b78d (diff) |
Add coveralls.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 88b69936..c9802a80 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,8 @@ python: install: # Self-install for setup.py-driven deps - pip install -e . -script: python test.py --verbose + - pip install coveralls +script: coverage run --source=paramiko test.py --verbose notifications: irc: channels: "irc.freenode.org#paramiko" @@ -15,3 +16,5 @@ notifications: on_failure: change use_notice: true email: false +after_success: + - coveralls |