Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f1e8140

Browse files
author
Omer Katz
committed
Travis will now test against different versions of pyzmq.
1 parent 0a6ab32 commit f1e8140

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.travis.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
11
language: python
22
python:
33
- 2.7
4+
env:
5+
matrix:
6+
- PYZMQ='pyzmq==14.0.1'
7+
- PYZMQ='pyzmq==14.0.0'
8+
- PYZMQ='pyzmq==13.1.0'
9+
- PYZMQ='pyzmq==13.0.2'
10+
- PYZMQ='pyzmq==13.0.0'
11+
matrix:
12+
fast_finish: true
13+
allow_failures:
14+
- env: PYZMQ='pyzmq==14.0.0'
15+
- env: PYZMQ='pyzmq==14.0.1'
416
script: nosetests
517
before_install:
618
- sudo apt-get update
719
- sudo apt-get install python-dev libevent-dev
820
install:
9-
- pip install nose --use-mirrors
10-
- pip install . --use-mirrors
21+
- "pip install nose gevent msgpack-python $PYZMQ"
22+
- pip install . --no-deps

0 commit comments

Comments
 (0)