Merge pull request #307 from sontek/enable_coveralls

This enables coveralls with travis
This commit is contained in:
Dana Powers
2015-02-03 13:35:54 -08:00

View File

@@ -18,7 +18,7 @@ before_install:
- ./build_integration.sh - ./build_integration.sh
install: install:
- pip install tox - pip install tox coveralls
- pip install . - pip install .
# Deal with issue on Travis builders re: multiprocessing.Queue :( # Deal with issue on Travis builders re: multiprocessing.Queue :(
# See https://github.com/travis-ci/travis-cookbooks/issues/155 # See https://github.com/travis-ci/travis-cookbooks/issues/155
@@ -38,3 +38,6 @@ deploy:
script: 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 - 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