diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-01-21 14:00:46 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-01-21 14:00:46 -0800 |
commit | 935c55dd1f596f97bd8c3d76dd8abfe9cffaa8b0 (patch) | |
tree | 1bb83d044a6ae2759fe710fdb2689bf86487768d | |
parent | c8ebe05ffc83c735ce8c73580c9cd66abf3d9a23 (diff) | |
parent | 473a9cdf5b22c8bbc4d4e95d419c8bd153f05e21 (diff) |
Merge branch '1.11' into 1.12
-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 |