speedtest-cli/.travis.yml

38 lines
702 B
YAML

language: python
python:
- 2.7
addons:
apt:
sources:
- deadsnakes
packages:
- python2.4
- python2.5
- python2.6
- pypy
env:
- TOXENV=py24
- TOXENV=py25
- TOXENV=py26
- TOXENV=py27
- TOXENV=py32
- TOXENV=py33
- TOXENV=py34
- TOXENV=pypy
- TOXENV=flake8
install:
- if [[ $(echo "$TOXENV" | egrep -c "py32") != 0 ]]; then curl https://bootstrap.pypa.io/3.2/get-pip.py | python3.2; fi;
- if [[ $(echo "$TOXENV" | egrep -c "(py2[45]|py31)") != 0 ]]; then pip install virtualenv==1.7.2 tox==1.3; fi;
- if [[ $(echo "$TOXENV" | egrep -c "(py2[45]|py31)") == 0 ]]; then pip install tox; fi;
script:
- tox
notifications:
email:
- matt@sivel.net