forked from tomerfiliba-org/reedsolomon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
33 lines (28 loc) · 847 Bytes
/
.travis.yml
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
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- pypy
- pypy3
install:
- if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pip install importlib unittest2; fi
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then pip install --install-option='--no-cython-compile' cython ; fi
- pip install 'coverage<4'
- pip install coveralls
script:
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then python setup.py build_ext --inplace ; fi
- nosetests -vv --with-coverage
after_success:
coveralls
notifications:
email:
on_success: change
on_failure: change
# PyPy can fail because of Cython - but this should not happen anymore since the related unit tests are now directly skipped if running under PyPy
#matrix:
# allow_failures:
# - python: pypy
# - python: pypy3