diff options
author | John Anderson <sontek@gmail.com> | 2015-01-24 16:37:42 -0800 |
---|---|---|
committer | John Anderson <sontek@gmail.com> | 2015-01-24 16:37:42 -0800 |
commit | 8ebef4b256d2bf4a99bf07a8d409262c13732953 (patch) | |
tree | 6f3b44fbbd64048adbf786834cf45b2cda642fac /.travis.yml | |
parent | 587206ff6ad59ae01248d24ff9c9fadbdfc1c1fc (diff) | |
download | kafka-python-8ebef4b256d2bf4a99bf07a8d409262c13732953.tar.gz |
This enables coveralls with travis
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 f4fc66b..1c90068 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,7 @@ before_install: - ./build_integration.sh install: - - pip install tox + - pip install tox coveralls - pip install . # Deal with issue on Travis builders re: multiprocessing.Queue :( # See https://github.com/travis-ci/travis-cookbooks/issues/155 @@ -38,3 +38,6 @@ deploy: script: - if [ -n "$UNIT_AND_LINT_ONLY" ]; then tox -e lint,`./travis_selector.sh $TRAVIS_PYTHON_VERSION`; else tox -e `./travis_selector.sh $TRAVIS_PYTHON_VERSION`; fi + +after_success: + - coveralls |