diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-01-21 11:01:04 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-01-21 11:01:04 -0800 |
commit | b5f00adbaab11d09af73a77d9425f2ae49a70378 (patch) | |
tree | 9503162fd637410f5200ad931722af2094401bd3 | |
parent | a08ac06083a40eb1455e5fa14cd644f7a2350f16 (diff) | |
parent | 00f84e328f00ed52d883c5ae0da626e20de733de (diff) |
Merge pull request #254 from lndbrg/add-coveralls
Add coveralls.
-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 |