speedtest-cli/.travis.yml

32 lines
1.0 KiB
YAML
Raw Normal View History

2014-02-11 04:17:19 +01:00
---
2014-02-08 16:37:39 +01:00
language: python
python:
2014-02-11 04:31:37 +01:00
- 2.6
2014-02-08 16:37:39 +01:00
- 2.7
2014-02-11 04:31:37 +01:00
- 3.2
- 3.3
2014-02-11 19:22:08 +01:00
- pypy
2014-02-08 16:37:39 +01:00
install:
- pip install .
- pip install pep8 pyflakes
2014-02-11 19:22:08 +01:00
2014-02-08 16:37:39 +01:00
script:
2014-02-10 23:43:34 +01:00
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pep8 --show-source speedtest_cli.py; fi
2014-02-11 04:31:37 +01:00
2014-02-10 23:43:34 +01:00
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pyflakes speedtest_cli.py; fi
2014-02-11 04:31:37 +01:00
- python speedtest_cli.py
2014-02-11 04:31:37 +01:00
2014-02-11 04:57:49 +01:00
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then curl -s http://www.python.org/ftp/python/2.4.6/Python-2.4.6.tar.bz2 | tar xj; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then cd Python-2.4.6; ./configure --prefix=$HOME/virtualenv/python2.4 > /dev/null 2>&1; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then make > /dev/null 2>&1; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then make install > /dev/null 2>&1; cd ..; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then ~/virtualenv/python2.4/bin/python2.4 -V; fi
2014-02-11 04:35:57 +01:00
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then ~/virtualenv/python2.4/bin/python2.4 ./speedtest_cli.py; fi
2014-02-08 16:37:39 +01:00
notifications:
email:
- matt@sivel.net