Skip to content

Commit

Permalink
Merge branch 'develop' into feature/adhoc-kill-old-utils
Browse files Browse the repository at this point in the history
  • Loading branch information
jerith committed Nov 25, 2015
2 parents 398ef2c + 8a19472 commit ee8357a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .travis.yml
Expand Up @@ -6,9 +6,6 @@ python:
- "2.7"
node_js:
- "0.10"
env:
# Test against the latest version of Twisted using Riak 1.4.
- TWISTED_VERSION="Twisted" RIAK_VERSION="1.4.12"
matrix:
include:
# Test against the oldest version of Twisted that we claim to support.
Expand All @@ -22,7 +19,7 @@ matrix:
# Test on pypy without coverage, because it's unnecessary and very slow.
# Also, we hit an obscure GC bug in pypy<=2.6.0 so we need at least 2.6.1.
- python: "pypy"
env: PYPY_VERSION="2.6.1" NO_COVERAGE=1 TWISTED_VERSION="Twisted" RIAK_VERSION="1.4.12"
env: PYPY_VERSION="4.0.1" NO_COVERAGE=1

cache:
directories:
Expand All @@ -32,8 +29,12 @@ services:
- redis-server

before_install:
# Default values for our build envvars.
- export RIAK_VERSION="${RIAK_VERSION-1.4.12}"
- export TWISTED_VERSION="${TWISTED_VERSION-Twisted}"
# If necessary, set up an appropriate version of pypy.
- if [ ! -z "$PYPY_VERSION" ]; then source utils/setup-pypy-travis.sh; fi
- if [ ! -z "$PYPY_VERSION" ]; then python --version 2>&1 | fgrep "PyPy $PYPY_VERSION"; fi
# Set up an appropriate version of Riak.
- utils/setup_travis_riak.sh "${RIAK_VERSION}"
install:
Expand Down

0 comments on commit ee8357a

Please sign in to comment.