summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 10070e597684eb3a8512bbd22953446d1eb242c8 (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
language: python
cache: pip
python:
  - 3.6
  - 3.5
  - 3.4
  - 2.7
before_install:
  - wget http://download.redis.io/releases/redis-5.0.0.tar.gz && mkdir redis_install && tar -xvzf redis-5.0.0.tar.gz -C redis_install && cd redis_install/redis-5.0.0 && make && src/redis-server --daemonize yes && cd ../..
  - redis-cli info
env:
  - TEST_HIREDIS=0
  - TEST_HIREDIS=1
install:
  - pip install -e .
  - "if [[ $TEST_PYCODESTYLE == '1' ]]; then pip install pycodestyle; fi"
  - "if [[ $TEST_HIREDIS == '1' ]]; then pip install hiredis; fi"
script: "if [[ $TEST_PYCODESTYLE == '1' ]]; then pycodestyle --repeat --show-source --exclude=.venv,.tox,dist,docs,build,*.egg,redis_install .; else python setup.py test; fi"
matrix:
  include:
    - python: 2.7
      env: TEST_PYCODESTYLE=1
    - python: 3.6
      env: TEST_PYCODESTYLE=1
    # python 3.7 has to be specified manually in the matrix
    # https://github.com/travis-ci/travis-ci/issues/9815
    - python: 3.7
      dist: xenial
      sudo: true
      env: TEST_HIREDIS=0
    - python: 3.7
      dist: xenial
      sudo: true
      env: TEST_HIREDIS=1