Files
pycapnp/.travis.yml
Jason Paryani 9b96bd4be9 Merge pull request #47 from thedrow/patch-4
Provided a cleaner way to exclude build jobs from the matrix
2015-02-01 21:39:30 -08:00

32 lines
516 B
YAML

language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
- pypy
env:
- BUILD_CAPNP=true
- BUILD_CAPNP=
# skip testing for pypy + BUILD_CAPNP=false since it's failing in travis for some reason
matrix:
exclude:
- python: pypy
env: 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 .
script: py.test test;