Skip to content

Commit

Permalink
Merge pull request #220 from martijnvermaat/travis
Browse files Browse the repository at this point in the history
Some Travis CI updates
  • Loading branch information
martijnvermaat committed Dec 22, 2015
2 parents 0eb7795 + 3385c4c commit 718a0ff
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .travis.yml
@@ -1,13 +1,20 @@
# Validate this file using http://lint.travis-ci.org/
language: python
sudo: false
cache:
directories:
- $HOME/.cache/pip
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "nightly"
- "pypy"
- "pypy3"
install:
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install -r requirements/python2.6-requirements.txt; elif [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then pip install -r requirements/pypy-requirements.txt; else pip install -r requirements/common-requirements.txt; fi"
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install -r requirements/python2.6-requirements.txt; elif [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]] || [[ $TRAVIS_PYTHON_VERSION == 'pypy3' ]]; then pip install -r requirements/pypy-requirements.txt; else pip install -r requirements/common-requirements.txt; fi"
- python setup.py install
script: python setup.py test

0 comments on commit 718a0ff

Please sign in to comment.