Files
pycapnp/.travis.yml

27 lines
530 B
YAML

language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
- pypy
env:
- BUILD_CAPNP=true
- BUILD_CAPNP=
compiler: gcc
before_install:
- buildutils/setup_travis.sh
- travis_retry pip install -U setuptools
- travis_retry pip install cython
- travis_retry pip install pytest
install:
- travis_retry pip install --editable .
# skip testing for pypy + BUILD_CAPNP=false since it's failing in travis for some reason
script: if [[ $TRAVIS_PYTHON_VERSION != 'pypy' || $BUILD_CAPNP == 'true' ]]; then py.test test; fi