Skip to content

Commit

Permalink
Merge 4d4636d into 3bd2ea2
Browse files Browse the repository at this point in the history
  • Loading branch information
jpgrayson committed May 5, 2017
2 parents 3bd2ea2 + 4d4636d commit 8e422b5
Showing 1 changed file with 22 additions and 11 deletions.
33 changes: 22 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
language: python

python:
- 2.7
- pypy
- 3.3
- 3.4
- 3.5
- 3.6
- pypy3

matrix:
allow_failures:
python: pypy3
include:
- python: '2.7'
- python: 'pypy'
env: PYENV_VERSION=pypy-portable-5.7.0 PYENV_VERSION_STRING='PyPy 5.7.0'
- python: '3.3'
- python: '3.4'
- python: '3.5'
- python: '3.6'
- python: 'pypy3'
env: PYENV_VERSION=pypy3-portable-5.7.0 PYENV_VERSION_STRING='PyPy 5.7.0'

before_install:
- |
if [[ -n "$PYENV_VERSION" ]]; then
wget https://github.com/praekeltfoundation/travis-pyenv/releases/download/0.3.0/setup-pyenv.sh
source setup-pyenv.sh
fi
install:
- pip install -r requirements-dev.txt
Expand All @@ -22,3 +28,8 @@ script: py.test --flake8 --cov

after_success:
coveralls

cache:
- pip
- directories:
- "${PYENV_CACHE_PATH:-$HOME/.pyenv_cache}"

0 comments on commit 8e422b5

Please sign in to comment.