# http://travis-ci.org/#!/facebook/tornado
language: python
python:
- - 2.5
- 2.6
- 2.7
- pypy
- 3.2
matrix:
include:
- - python: 2.5
- env: FULL="true"
- python: 2.6
env: FULL="true"
- python: 2.7
- python: 3.2
env: LANG="C"
install:
- - if [[ $TRAVIS_PYTHON_VERSION == '2.5' ]]; then pip install --use-mirrors simplejson unittest2; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors unittest2; fi
- if [[ $FULL == 'true' ]]; then sudo apt-get install librtmp-dev; pip install --use-mirrors pycurl futures; fi
- if [[ $FULL == 'true' && $TRAVIS_PYTHON_VERSION == '2.5' ]]; then pip install --use-mirrors twisted==11.0.0 'zope.interface<4.0'; fi