summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 7184bc84f4dc52d4d6da6809015df9a83bfabad6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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
    - KAFKA_VERSION=0.8.2.0

before_install:
    - sudo apt-get install libsnappy-dev
    - ./build_integration.sh

install:
    - 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
    - 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

after_success:
  - coveralls