Codebase list logbook / 7e41e78b-d633-4bb2-9787-9589652ceae7/main .travis.yml
7e41e78b-d633-4bb2-9787-9589652ceae7/main

Tree @7e41e78b-d633-4bb2-9787-9589652ceae7/main (Download .tar.gz)

.travis.yml @7e41e78b-d633-4bb2-9787-9589652ceae7/main

9af17e1
9949c7f
 
 
 
 
 
 
 
 
c2895a0
fea2298
9af17e1
fea2298
 
ffdbf14
9949c7f
ffdbf14
 
9af17e1
ffdbf14
 
 
9af17e1
ffdbf14
 
514f7c4
ffdbf14
 
514f7c4
6de2b55
514f7c4
9af17e1
 
514f7c4
 
 
 
 
 
ffdbf14
 
514f7c4
9af17e1
fea2298
9af17e1
fea2298
9af17e1
 
fea2298
9af17e1
 
 
 
fea2298
ffdbf14
 
 
 
 
9949c7f
 
ffdbf14
 
 
language: python
dist: xenial
addons:
  apt:
    sources:
      - chris-lea-redis-server
      - sourceline: 'ppa:chris-lea/zeromq'
    packages:
    - redis-server
    - libzmq3-dev
services:
- redis-server
python:
- '2.7'
- '3.5'
- '3.6'
- '3.7'
before_install:
  - pip install coveralls
install:
- pip install -U pip
- pip install cython
- cython logbook/_speedups.pyx
env:
- DISABLE_LOGBOOK_CEXT=True
- CYBUILD=True

script:
- pip install -e .[all]
- if [[ $GEVENT == 'True' ]] ; then pip install gevent; fi
- pytest --cov=logbook -r s tests

matrix:
  exclude:
  include:
  - python: "3.6"
    env: GEVENT=True CYBUILD=True
  - python: "2.7"
    env: GEVENT=True CYBUILD=True

after_success:
  - coveralls

notifications:
  email:
    recipients:
    - vmalloc@gmail.com
  irc:
    channels:
    - chat.freenode.net#pocoo
    on_success: change
    on_failure: always
    use_notice: true
    skip_join: true
deploy:
  - provider: pypi
    user: vmalloc
    password:
      secure: WFmuAbtBDIkeZArIFQRCwyO1TdvF2PaZpo75r3mFgnY+aWm75cdgjZKoNqVprF/f+v9EsX2kDdQ7ZfuhMLgP8MNziB+ty7579ZDGwh64jGoi+DIoeblAFu5xNAqjvhie540uCE8KySk9s+Pq5EpOA5w18V4zxTw+h6tnBQ0M9cQ=
    on:
      python: "3.7"
      condition: $CYBUILD = 'True'
      tags: true
      repo: getlogbook/logbook
    distributions: "sdist"