deb-python-kafka/.travis.yml
ms7s a36307a4c8 Run tests in python3.6 too (#992)
* Test with Python 3.6 in Travis CI
* Add Python 3.6 environment to tox config
* Don't run automated tests on Python 3.3
2017-03-03 12:37:53 -08:00

42 lines
621 B
YAML

language: python
python:
- 2.6
- 2.7
- 3.4
- 3.5
- 3.6
- pypy
env:
- KAFKA_VERSION=0.8.0
- KAFKA_VERSION=0.8.1.1
- KAFKA_VERSION=0.8.2.2
- KAFKA_VERSION=0.9.0.1
- KAFKA_VERSION=0.10.1.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