41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
language: python
|
|
|
|
python:
|
|
- 2.6
|
|
- 2.7
|
|
- 3.3
|
|
- 3.4
|
|
- pypy
|
|
|
|
env:
|
|
- UNIT_AND_LINT_ONLY=true
|
|
- KAFKA_VERSION=0.8.0
|
|
- KAFKA_VERSION=0.8.1
|
|
- KAFKA_VERSION=0.8.1.1
|
|
|
|
before_install:
|
|
- sudo apt-get install libsnappy-dev
|
|
- ./build_integration.sh
|
|
|
|
install:
|
|
- pip install tox
|
|
- pip install .
|
|
# Deal with issue on Travis builders re: multiprocessing.Queue :(
|
|
# See https://github.com/travis-ci/travis-cookbooks/issues/155
|
|
- sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm
|
|
|
|
deploy:
|
|
provider: pypi
|
|
server: https://pypi.python.org/pypi
|
|
user: mumrah
|
|
password:
|
|
secure: TIZNKxktOm42/LHLDCuKuPqmAfYKekyHL4MqEFpnqDI5T5sHzG9IQaOwppYfQNggHiILUBzk1j6w/FPJunJyd62AFtydkKtIccqENIIAio78afeCRMQDynstNXjDefmt0s90xLGSlLzDMxCEWB4F6frEtPl/8KpNSFB2fvj+HXY=
|
|
on:
|
|
tags: true
|
|
all_branches: true
|
|
# TODO replace all_branches with "branch: master" after https://github.com/travis-ci/travis-ci/issues/1675 is fixed
|
|
# branch: master
|
|
|
|
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
|