~ubuntu-branches/ubuntu/trusty/pyzmq/trusty-proposed

« back to all changes in this revision

Viewing changes to .travis.yml

  • Committer: Package Import Robot
  • Author(s): Julian Taylor
  • Date: 2013-05-12 13:59:20 UTC
  • mfrom: (7.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20130512135920-5im4zxsej4apg8cj
Tags: 13.1.0-1
* New upstream release built with zeromq3 (Closes: #698830)
  - drop all patches
* workaround-gevent.patch: workaround issue with gevent < 1.0
* noncopysend-test.patch: avoid uninitialized values in tests
* update copyright

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
  - 2.6
5
5
  - 2.7
6
6
  - 3.2
7
 
 
 
7
  - 3.3
 
8
  - pypy
 
9
env:
 
10
    - ZMQ=
 
11
    - ZMQ=bundled
8
12
before_install:
9
 
  - pip install -q --use-mirrors cython
 
13
  - sudo apt-get install -qq libzmq3-dev
 
14
  - if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then pip install -q --use-mirrors cffi; fi
 
15
  - if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ]]; then pip install -q --use-mirrors cython; fi
10
16
 
11
17
install:
12
 
  - python setup.py build_ext --inplace
 
18
  - python setup.py build_ext --inplace --zmq=$ZMQ
 
19
 
 
20
matrix:
 
21
  exclude:
 
22
    - python: pypy
 
23
      env: ZMQ=bundled
 
24
  allow_failures:
 
25
    - python: pypy
13
26
 
14
27
script: python setup.py test