mirror of
https://github.com/capnproto/pycapnp.git
synced 2025-03-05 17:01:01 +01:00
25 lines
470 B
YAML
25 lines
470 B
YAML
language: python
|
|
|
|
python:
|
|
- 2.6
|
|
- 2.7
|
|
- 3.3
|
|
- pypy
|
|
|
|
env:
|
|
- BUILD_CAPNP=true
|
|
- BUILD_CAPNP=
|
|
|
|
compiler: gcc
|
|
|
|
before_install:
|
|
- buildutils/setup_travis.sh
|
|
- pip install -U setuptools
|
|
- pip install cython
|
|
- pip install pytest
|
|
|
|
install:
|
|
- 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
|