From cfd0188449e16601ba0d1ae99db69013a695d1df Mon Sep 17 00:00:00 2001 From: Omer Katz Date: Mon, 2 Feb 2015 07:26:17 +0200 Subject: [PATCH] Provided a cleaner way to exclude build jobs from the matrix. --- .travis.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index ef0cf6e..79e861a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,12 @@ 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: @@ -22,5 +28,4 @@ before_install: 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 +script: py.test test;