We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12cb763 commit beb8606Copy full SHA for beb8606
.travis.yml
@@ -1,3 +1,4 @@
1
+sudo: false
2
language: python
3
python:
4
- 2.6
@@ -11,16 +12,19 @@ env:
11
12
- PYZMQ='pyzmq>=13,<14'
13
matrix:
14
fast_finish: true
-script:
15
- - flake8 --ignore=E501,E128 zerorpc bin
16
- - nosetests -v
17
-sudo: false
18
addons:
19
apt:
20
packages:
21
- python-dev
22
- libevent-dev
23
install:
24
- - pip install flake8
+ - if [ $TRAVIS_PYTHON_VERSION != '2.6' ]; then
+ pip install flake8;
+ fi
25
- "pip install nose $PYZMQ"
26
- pip install .
+script:
27
28
+ flake8 --ignore=E501,E128 zerorpc bin;
29
30
+ - nosetests -v
0 commit comments