Files
deb-python-kafka/.travis.yml
Jianbin Wei b1a6d3301f Add kafka 0.10.2.1 into integration testing version (#1096)
* Add kafka 0.10.2.1 into integration testing version
* Disable tests for python 2.6 and kafka 0.8.0 and 0.8.1.1
* Remove references to python 2.6 support
2017-06-16 22:58:58 -07:00

40 lines
586 B
YAML

language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- pypy
env:
- KAFKA_VERSION=0.8.2.2
- KAFKA_VERSION=0.9.0.1
- KAFKA_VERSION=0.10.1.1
- KAFKA_VERSION=0.10.2.1
sudo: false
addons:
apt:
packages:
- libsnappy-dev
cache:
directories:
- $HOME/.cache/pip
- servers/
before_install:
- ./build_integration.sh
install:
- pip install tox coveralls
- pip install .
script:
- tox -e `if [ "$TRAVIS_PYTHON_VERSION" == "pypy" ]; then echo pypy; else echo py${TRAVIS_PYTHON_VERSION/./}; fi`
after_success:
- coveralls