Files
jedi/.travis.yml
2013-03-10 21:28:27 +01:00

18 lines
370 B
YAML

language: python
python:
- 2.5
- 2.6
- 2.7
- 3.2
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
- pip install --use-mirrors nose
script:
- cd test
- ./test.sh